forked from deepnote/deepnote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "deepnote",
"version": "0.0.0",
"private": true,
"description": "Deepnote Open Source",
"keywords": [
".deepnote",
"data-science",
"deepnote",
"jupyter",
"notebook"
],
"license": "Apache-2.0",
"scripts": {
"biome:check": "biome check .",
"biome:check:fix": "biome check --write .",
"build": "pnpm -r run build",
"license-check": "license-checker-rseidelsohn --json --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC\" --excludePackages \"deepnote\"",
"lintAndFormat": "biome check . && pnpm run prettier:check",
"lintAndFormat:fix": "biome check --write . && pnpm run prettier",
"prepare": "husky",
"prettier": "prettier --write \"**/*.{md,yml,yaml}\"",
"prettier:check": "prettier --check \"**/*.{md,yml,yaml}\"",
"spell-check": "cspell \"**/*.{md,txt,json,js,ts,tsx,jsx,py,yml,yaml}\"",
"spell-check:fix": "cspell \"**/*.{md,txt,json,js,ts,tsx,jsx,py,yml,yaml}\" --no-exit-code --show-suggestions",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit -p tsconfig.json && pnpm -r exec tsc --noEmit"
},
"lint-staged": {
"**/*.{ts,tsx,html,json,jsonc}": [
"pnpm exec biome check --write"
],
"**/*.{md,yml,yaml}": [
"pnpm exec prettier --write"
],
".gitignore": [
"sort -o .gitignore .gitignore"
],
"**/package.json": "sort-package-json"
},
"devDependencies": {
"@biomejs/biome": "2.2.7",
"@types/node": "22.18.12",
"@vitest/coverage-v8": "4.0.5",
"cspell": "9.2.2",
"husky": "9.1.7",
"license-checker-rseidelsohn": "4.4.2",
"lint-staged": "16.2.5",
"prettier": "3.6.2",
"sort-package-json": "3.4.0",
"tsdown": "0.15.9",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "4.0.5"
},
"packageManager": "pnpm@10.19.0",
"engines": {
"node": ">=22.14.0",
"pnpm": ">=10.17.1"
},
"pnpm": {
"overrides": {
"@isaacs/brace-expansion": ">=5.0.1",
"ajv": ">=8.18.0",
"diff": ">=8.0.3",
"glob": ">=11.1.0",
"hono": ">=4.11.10",
"lodash@<4.17.23": "^4.17.23",
"lodash-es@<4.17.23": "^4.17.23",
"minimatch": ">=10.2.1"
}
}
}