-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
93 lines (93 loc) · 2.67 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
{
"name": "vega-themes",
"version": "2.15.0",
"description": "Themes for stylized Vega and Vega-Lite visualizations.",
"keywords": [
"vega",
"vega-lite",
"themes",
"style"
],
"license": "BSD-3-Clause",
"author": {
"name": "UW Interactive Data Lab",
"url": "https://idl.cs.washington.edu"
},
"contributors": [
{
"name": "Emily Gu",
"url": "https://github.com/emilygu"
},
{
"name": "Arvind Satyanarayan",
"url": "http://arvindsatya.com"
},
{
"name": "Jeffrey Heer",
"url": "https://idl.cs.washington.edu"
},
{
"name": "Dominik Moritz",
"url": "https://www.domoritz.de"
}
],
"main": "build/vega-themes.js",
"module": "build/vega-themes.module.js",
"unpkg": "build/vega-themes.min.js",
"jsdelivr": "build/vega-themes.min.js",
"types": "build/vega-themes.module.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/vega/vega-themes.git"
},
"files": [
"src",
"build"
],
"scripts": {
"prebuild": "yarn clean",
"build": "rollup -c",
"clean": "rimraf build && rimraf examples/build",
"copy:data": "rsync -r node_modules/vega-datasets/data/* examples/data",
"copy:build": "rsync -r build/* examples/build",
"deploy:gh": "yarn build && mkdir -p examples/build && rsync -r build/* examples/build && gh-pages -d examples",
"preversion": "yarn lint",
"serve": "browser-sync start -s -f build examples --serveStatic examples",
"start": "yarn build && concurrently --kill-others -n Server,Rollup 'yarn serve' 'rollup -c -w'",
"format": "eslint . --fix",
"lint": "eslint .",
"release": "release-it"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@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.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"browser-sync": "^3.0.3",
"concurrently": "^9.0.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rollup": "^4.24.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.6.3",
"vega": "^5.30.0",
"vega-lite": "^5.21.0"
},
"peerDependencies": {
"vega": "*",
"vega-lite": "*"
},
"dependencies": {}
}