-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
102 lines (102 loc) · 2.88 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
{
"name": "vega-embed",
"version": "6.29.0",
"description": "Publish Vega visualizations as embedded web components.",
"keywords": [
"vega",
"data",
"visualization",
"component",
"embed"
],
"repository": {
"type": "git",
"url": "http://github.com/vega/vega-embed.git"
},
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"contributors": [
{
"name": "Dominik Moritz",
"url": "https://www.domoritz.de"
}
],
"bugs": {
"url": "https://github.com/vega/vega-embed/issues"
},
"homepage": "https://github.com/vega/vega-embed#readme",
"license": "BSD-3-Clause",
"type": "module",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"unpkg": "build/vega-embed.min.js",
"jsdelivr": "build/vega-embed.min.js",
"files": [
"src",
"build"
],
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/coverage-istanbul": "^3.0.5",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "^26.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.4.2",
"release-it": "^18.1.2",
"rollup": "4.34.6",
"rollup-plugin-bundle-size": "^1.0.3",
"sass": "^1.84.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vega": "^5.31.0",
"vega-lite": "^5.23.0",
"vitest": "^3.0.5",
"vitest-canvas-mock": "^0.3.3"
},
"peerDependencies": {
"vega": "^5.21.0",
"vega-lite": "*"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"json-stringify-pretty-compact": "^4.0.0",
"semver": "^7.7.1",
"tslib": "^2.8.1",
"vega-interpreter": "^1.1.0",
"vega-schema-url-parser": "^3.0.1",
"vega-themes": "3.0.0-alpha.3",
"vega-tooltip": "1.0.0-alpha.5"
},
"scripts": {
"prebuild": "npm run clean && npm run build:style",
"build": "rollup -c",
"build:style": "./build-style.sh",
"clean": "del-cli build src/style.ts",
"prepublishOnly": "npm run clean && npm run build",
"preversion": "npm run lint && npm run test",
"serve": "browser-sync start --directory -s -f build *.html",
"start": "npm run build && concurrently --kill-others -n Server,Rollup 'npm run serve' 'rollup -c -w'",
"pretest": "npm run build:style",
"test": "vitest run",
"format": "eslint --fix && prettier . --write",
"lint": "eslint && prettier . --check",
"release": "release-it"
}
}