-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
118 lines (118 loc) · 3.42 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
{
"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",
"main": "build/vega-embed.js",
"module": "build/vega-embed.module.js",
"unpkg": "build/vega-embed.min.js",
"jsdelivr": "build/vega-embed.min.js",
"types": "build/src/embed.d.ts",
"files": [
"src",
"build"
],
"exports": {
".": {
"import": {
"types": "./build/src/embed.d.ts",
"default": "./build/vega-embed.module.js"
},
"require": {
"default": "./build/vega-embed.js"
}
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@release-it/conventional-changelog": "^9.0.3",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-istanbul": "^2.1.5",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.0",
"del-cli": "^6.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vitest": "^0.5.4",
"eslint": "^9.15.0",
"jsdom": "^25.0.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup": "4.27.3",
"sass": "^1.81.0",
"typescript-eslint": "^8.15.0",
"typescript": "^5.6.3",
"vega-lite": "^5.21.0",
"vega": "^5.30.0",
"vitest-canvas-mock": "^0.3.3",
"vitest": "^2.1.5"
},
"peerDependencies": {
"vega": "^5.21.0",
"vega-lite": "*"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"json-stringify-pretty-compact": "^4.0.0",
"semver": "^7.6.3",
"tslib": "^2.8.1",
"vega-interpreter": "^1.0.5",
"vega-schema-url-parser": "^2.2.0",
"vega-themes": "^2.15.0",
"vega-tooltip": "^0.35.2"
},
"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",
"prettierbase": "prettier '*.{css,scss,html}'",
"format": "eslint . --fix && npm run prettierbase -- --write",
"lint": "eslint . && npm run prettierbase -- --check",
"release": "release-it"
}
}