-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
110 lines (110 loc) · 4.15 KB
/
package.json
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
101
102
103
104
105
106
107
108
109
110
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"version": "3.1.5",
"changelog": {
"labels": {
"enhancement": "Added",
"bug": "Fixed",
"internal": "Internal"
}
},
"type": "module",
"emscripten": "3.1.58",
"llvm": "17.0.6",
"pyodide": "0.26.2",
"engines": {
"node": ">=16"
},
"workspaces": [
"tools/perspective-test",
"tools/perspective-scripts",
"cpp/perspective",
"packages/perspective-esbuild-plugin",
"packages/perspective-viewer-datagrid",
"packages/perspective-viewer-d3fc",
"packages/perspective-viewer-openlayers",
"packages/perspective-workspace",
"packages/perspective-jupyterlab",
"packages/perspective-webpack-plugin",
"packages/perspective-cli",
"rust/perspective-js",
"rust/perspective-viewer",
"examples/*",
"docs",
"python/perspective"
],
"devDependencies": {
"@finos/perspective": "workspace:^",
"@finos/perspective-jupyterlab": "workspace:^",
"@finos/perspective-test": "workspace:^",
"@finos/perspective-viewer": "workspace:^",
"@finos/perspective-viewer-d3fc": "workspace:^",
"@finos/perspective-viewer-datagrid": "workspace:^",
"@finos/perspective-viewer-openlayers": "workspace:^",
"@finos/perspective-workspace": "workspace:^",
"@fontsource/roboto-mono": "4.5.10",
"@playwright/test": "^1.47",
"@types/ws": "^7.2.2",
"@zip.js/zip.js": "^2.7.27",
"auto-changelog": "^2.4.0",
"chalk": "^2.4.2",
"cpy-cli": "^4.2.0",
"css-loader": "^6.7.3",
"dotenv": "^8.1.0",
"esbuild": "^0.14.54",
"fs-extra": "^8.1.0",
"glob": "^11",
"glob-gitignore": "^1.0.14",
"husky": "^7.0.4",
"inquirer": "^7.0.0",
"minimatch": "^5.1.2",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"octokit": "^1.7.2",
"prettier": "^2.7.1",
"puppeteer": "^23",
"rimraf": "^6",
"stoppable": "^1.1.0",
"style-loader": "^3.3.1",
"superstore-arrow": "3.0.0",
"tar": "^6.1.13",
"ts-loader": "^6.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "~5.2.2",
"webpack": "^5.60.0",
"webpack-cli": "^4.7.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "npm-run-all postinstall:*",
"postinstall:emsdk": "node tools/perspective-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/perspective-scripts/install_llvm.mjs",
"install_pyodide": "node tools/perspective-scripts/install_pyodide.mjs",
"build,test": "npm run --silent build && npm run --silent test",
"build_js": "node tools/perspective-scripts/build.mjs",
"build": "node tools/perspective-scripts/build.mjs",
"build_python": "node tools/perspective-scripts/build.mjs",
"bench": "node tools/perspective-scripts/bench.mjs",
"setup": "node tools/perspective-scripts/setup.mjs",
"docs": "node tools/perspective-scripts/docs.mjs",
"test": "node tools/perspective-scripts/test.mjs",
"test:jupyter": "pnpm run --recursive --filter @finos/perspective-jupyterlab test:jupyter",
"test_js": "node tools/perspective-scripts/test_js.mjs",
"test_python": "node tools/perspective-scripts/test_python.mjs",
"clean": "node tools/perspective-scripts/clean.mjs",
"start": "npm run start --workspace",
"prepush": "npm run lint",
"prepare": "husky install",
"lint": "node tools/perspective-scripts/lint.mjs",
"fix": "node tools/perspective-scripts/fix.mjs",
"version": "node tools/perspective-scripts/version.mjs",
"jlab_link": "pip3 install ./python/perspective --no-build-isolation"
}
}