-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 2.08 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
{
"name": "zebra",
"version": "2.0.0",
"description": "A fast, lightweight, APCA color contrast plugin",
"main": "./dist/code.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:ui && npm run build:main",
"build:production": "npm run build:ui && npm run build:main -- --minify",
"build:main": "esbuild plugin-src/code.js --bundle --outfile=dist/code.js",
"build:ui": "npx vite build --minify esbuild --emptyOutDir=false",
"build:watch": "concurrently -n widget,iframe \"npm run build:main -- --watch\" \"npm run build:ui -- --watch\"",
"dev": "concurrently -n tsc,build,vite 'npm:tsc:watch' 'npm:build:watch' 'npx vite'"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@vitejs/plugin-react-refresh": "^1.3.1",
"babel-eslint": "^10.0.1",
"concurrently": "^6.3.0",
"css-loader": "^6.2.0",
"esbuild": "^0.13.5",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"vite": "^2.5.2",
"vite-plugin-singlefile": "^0.5.1"
},
"author": "Dan Hollick",
"license": "GPL",
"dependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-popover": "^0.1.4",
"@radix-ui/react-tabs": "^0.1.4",
"@radix-ui/react-tooltip": "^0.1.6",
"@stitches/react": "^1.2.6",
"apca-w3": "^0.0.98-g-4g.4b",
"babel-loader": "^8.2.3",
"chroma-js": "^2.1.2",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dev-utils": "^11.0.4",
"react-dom": "^17.0.2",
"zustand": "^3.6.7"
}
}