forked from perspective-dev/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.65 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/perspective-dev/perspective"
},
"version": "4.3.0",
"changelog": {
"labels": {
"enhancement": "Added",
"bug": "Fixed",
"internal": "Internal"
}
},
"type": "module",
"emscripten": "4.0.9",
"llvm": "17.0.6",
"pyodide": "0.29.3",
"engines": {
"node": ">=16 <23"
},
"workspaces": [
"tools/test",
"tools/scripts",
"tools/esbuild-plugin",
"packages/react",
"packages/viewer-datagrid",
"packages/viewer-d3fc",
"packages/viewer-openlayers",
"packages/workspace",
"packages/jupyterlab",
"packages/cli",
"rust/perspective-js",
"rust/perspective-viewer",
"rust/perspective-python",
"rust/perspective-server",
"examples/*",
"docs"
],
"devDependencies": {
"@fontsource/roboto-mono": "catalog:",
"@perspective-dev/client": "workspace:^",
"@perspective-dev/jupyterlab": "workspace:^",
"@perspective-dev/react": "workspace:^",
"@perspective-dev/server": "workspace:^",
"@perspective-dev/test": "workspace:^",
"@perspective-dev/viewer": "workspace:^",
"@perspective-dev/viewer-d3fc": "workspace:^",
"@perspective-dev/viewer-datagrid": "workspace:^",
"@perspective-dev/viewer-openlayers": "workspace:^",
"@perspective-dev/workspace": "workspace:^",
"@playwright/experimental-ct-react": "catalog:",
"@playwright/test": "catalog:",
"chalk": "catalog:",
"dotenv": "catalog:",
"husky": "catalog:",
"npm-run-all": "catalog:",
"prettier": "catalog:",
"tsx": "catalog:"
},
"pnpm": {
"overrides": {
"d3-array": ">=3 <4",
"d3-dispatch": ">=3 <4",
"d3-format": ">=3 <4",
"d3-scale": ">=4 <5",
"d3-selection": ">=3 <4",
"d3-transition": ">=3 <4"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "npm-run-all postinstall:*",
"postinstall:emsdk": "node tools/scripts/install_emsdk.mjs",
"postinstall:playwright": "npx playwright install --with-deps chromium",
"postinstall:vscode": "cp -n ./.vscode/settings.default.json ./.vscode/settings.json || true",
"install_llvm": "node tools/scripts/install_llvm.mjs",
"install_pyodide": "node tools/scripts/install_pyodide.mjs",
"build,test": "npm run --silent build && npm run --silent test",
"build_js": "node tools/scripts/build.mjs",
"build": "node tools/scripts/build.mjs",
"build_python": "node tools/scripts/build.mjs",
"bench": "node tools/scripts/bench.mjs",
"setup": "node tools/scripts/setup.mjs",
"once": "PSP_ONCE=1 node tools/scripts/setup.mjs",
"docs": "node tools/scripts/docs.mjs",
"test": "node tools/scripts/test.mjs",
"test:jupyter": "pnpm run --recursive --filter @perspective-dev/jupyterlab test:jupyter",
"test_js": "node tools/scripts/test_js.mjs",
"test_python": "node tools/scripts/test_python.mjs",
"clean": "node tools/scripts/clean.mjs",
"start": "npm run start --workspace",
"prepush": "node tools/scripts/prepush.mjs && npm run lint",
"prepare": "husky install",
"lint": "node tools/scripts/lint.mjs",
"fix": "node tools/scripts/fix.mjs",
"version": "node tools/scripts/version.mjs",
"jlab_link": "pip3 install ./python/perspective --no-build-isolation"
}
}