-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sdk-js",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "Databricks Modular SDKs for JavaScript",
"workspaces": [
"packages/**"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:browser": "turbo run test:browser",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"format:check": "turbo run format:check",
"checks": "turbo run lint format:check",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"docs": "npm run build && typedoc",
"check:licenses": "node scripts/check-licenses.mjs",
"ci": "npm run build && npm run lint && npm run format:check && npm run typecheck && npm test && npm run test:browser && npm run check:licenses"
},
"repository": {
"type": "git",
"url": "https://github.com/databricks/sdk-js.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/json-bigint": "^1.0.4",
"@types/node": "22.19.12",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"@vitest/browser": "^3.2.7",
"@vitest/coverage-v8": "^3.2.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"playwright": "^1.48.0",
"prettier": "^3.2.0",
"tsdown": "0.20.3",
"turbo": "2.9.14",
"typedoc": "^0.28.19",
"typescript": "^5.7.0",
"vite": "^6.4.3",
"vitest": "^3.2.7"
},
"overrides": {
"rollup": "4.59.0",
"ws": "8.21.1",
"picomatch": "4.0.4",
"get-tsconfig": "4.13.6",
"ts-api-utils": "2.4.0",
"bignumber.js": "9.1.2"
},
"packageManager": "npm@10.9.3",
"engines": {
"node": ">=22.0.0"
}
}