forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.9 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"version": "3.0.0-rc.6",
"changelog": {
"labels": {
"enhancement": "Added",
"bug": "Fixed",
"internal": "Internal"
}
},
"type": "module",
"emscripten": "3.1.58",
"llvm": "17.0.6",
"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.37.1",
"@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": "^7.2.0",
"glob-gitignore": "^1.0.14",
"html-webpack-plugin": "^5.1.0",
"husky": "^7.0.4",
"inquirer": "^7.0.0",
"jsdoc-to-markdown": "^8.0.0",
"less": "^4.1.3",
"less-loader": "^7.2.1",
"minimatch": "^5.1.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"npm-pack-here": "^1.2.0",
"npm-run-all": "^4.1.3",
"octokit": "^1.7.2",
"prettier": "^2.7.1",
"pretty-error": "^4.0.0",
"puppeteer": "^13.1.3",
"rimraf": "^2.6.2",
"sinon": "^7.3.1",
"stoppable": "^1.1.0",
"style-loader": "^3.3.1",
"superstore-arrow": "3.0.0",
"tar": "^6.1.13",
"term-img": "^4.1.0",
"timezone-mock": "^1.3.6",
"tiny-glob": "^0.2.9",
"ts-loader": "^6.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.4",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "5.1.6",
"webpack": "^5.60.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.11.1"
},
"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",
"postinstall:vscode": "cp -n ./.vscode/settings.default.json ./.vscode/settings.json || true",
"install_llvm": "node tools/perspective-scripts/install_llvm.mjs",
"build,test": "npm run --silent build && npm run --silent test",
"build_js": "node tools/perspective-scripts/build_js.mjs",
"build": "node tools/perspective-scripts/build.mjs",
"build_python": "node tools/perspective-scripts/build_python.mjs",
"bench": "node tools/perspective-scripts/bench.mjs",
"_wheel_python": "node tools/perspective-scripts/_wheel_python.mjs",
"_requires_python": "node tools/perspective-scripts/_requires_python.mjs",
"setup": "node tools/perspective-scripts/setup.mjs",
"docs": "cargo doc --no-deps",
"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"
},
"dependencies": {
"canvas": "^2.11.2",
"fast-xml-parser": "^4.4.0",
"gif-encoder-2": "^1.0.5",
"gifencoder": "^2.0.1",
"svg-parser": "^2.0.4"
}
}