-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.24 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
{
"private": true,
"license": "BSD-3-Clause",
"author": "UW Interactive Data Lab (http://idl.cs.washington.edu)",
"repository": "vega/vega",
"scripts": {
"build": "lerna run build && yarn docsbuild",
"build-editor-preview": "scripts/build-editor-preview.sh",
"clean": "lerna clean --yes && lerna exec -- rimraf build && lerna exec -- rimraf LICENSE && rimraf node_modules yarn.lock",
"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": "yarn license && lerna publish from-package",
"serve": "serve packages/vega/ -l 8080",
"test": "yarn test:no-lint && yarn lint",
"test:no-lint": "lerna run test --ignore vega-typings && lerna run test --scope vega-typings",
"lint": "ESLINT_USE_FLAT_CONFIG=true yarn eslint -c eslint.config.mjs .",
"format": "yarn lint --fix",
"postinstall": "scripts/postinstall.sh"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@definitelytyped/dtslint": "0.0.159",
"@eslint/js": "^9.4.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"ajv": "^8.16.0",
"ajv-formats": "^2.1.1",
"canvas": "^2.11.2",
"eslint": "^8.53.0",
"globals": "^15.4.0",
"jsdom": "^24.1.0",
"lerna": "^7.4.2",
"pixelmatch": "^5.3.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-bundle-size": "^1.0.3",
"serve": "^14.2.3",
"tape": "^5.7.5",
"typescript": "~5.4.5",
"typescript-eslint": "^7.13.0",
"vega-datasets": "^2.8.1"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.18.0"
},
"packageManager": "[email protected]"
}