-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.13 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.13 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
{
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/vega/vega.git"
},
"scripts": {
"build": "lerna run build && npm run docsbuild",
"build-editor-preview": "scripts/build-editor-preview.sh",
"clean": "lerna clean --yes && lerna exec -- del-cli build && lerna exec -- del-cli LICENSE && del-cli node_modules package-lock.json",
"data": "rsync -r node_modules/vega-datasets/data/* docs/data",
"docs": "cd docs && bundle exec jekyll serve -I -l",
"docsbuild": "cd packages/vega/build && cp vega.js* vega.min.js* vega-core.js vega-core.min.js* vega-schema.json ../../../docs/",
"license": "lerna exec -- cp ../../LICENSE .",
"release": "npm run license && lerna publish from-package",
"serve": "serve packages/vega/ -l 8080",
"test": "npm run test:no-lint && npm run lint",
"test:no-lint": "lerna run test --ignore vega-typings && lerna run test --scope vega-typings",
"lint": "eslint -c eslint.config.js .",
"format": "npm run lint -- --fix",
"postinstall": "scripts/postinstall.sh"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.3",
"@babel/eslint-parser": "^7.28.0",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@blazediff/core": "^0.6.0",
"@definitelytyped/dtslint": "0.2.33",
"@eslint/js": "^9.34.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^24.3.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"canvas": "^3.2.0",
"del-cli": "^6.0.0",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"jsdom": "^27.0.0",
"lerna": "^8.2.2",
"pngjs": "^7.0.0",
"prettier": "^3.6.2",
"rollup": "^4.50.0",
"rollup-plugin-bundle-size": "^1.0.3",
"serve": "^14.2.4",
"tape": "^5.9.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.42.0",
"vega-datasets": "^3.2.1"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.18.0"
}
}