-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
{
"name": "HyperChat",
"version": "3.0.4",
"private": true,
"scripts": {
"build": "npm-run-all --parallel build:chrome build:firefox",
"build:chrome": "cross-env BROWSER=chrome vite build",
"build:firefox": "cross-env BROWSER=firefox vite build",
"dev:chrome": "cross-env MINIFY=false BROWSER=chrome vite build --watch",
"dev:firefox": "cross-env MINIFY=false BROWSER=firefox vite build --watch",
"start:chrome": "cross-env AUTOLAUNCH=true npm run dev:chrome",
"start:firefox": "cross-env AUTOLAUNCH=true npm run dev:firefox",
"lint": "npm run lint:check -- --fix",
"lint:check": "eslint src --max-warnings=0"
},
"dependencies": {
"@livetl/svelte-webext-stores": "^0.0.14",
"@mdi/js": "^6.5.95",
"iframe-translator": "^0.3.7",
"is-dark-color": "^1.2.0",
"sha-1": "^1.0.0",
"smelte": "^1.1.8",
"svelte": "^3.49.0",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@sveltejs/vite-plugin-svelte": "1.0.0-next.34",
"@tsconfig/svelte": "^2.0.1",
"@types/chrome": "^0.0.193",
"autoprefixer": "^10.3.1",
"cross-env": "^7.0.3",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-svelte3": "^3.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-extend": "^1.0.5",
"postcss-import": "^14.0.2",
"postcss-input-range": "^4.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.3",
"rollup-plugin-copy": "^3.4.0",
"svelte-preprocess": "^4.7.4",
"terser": "^5.19.2",
"typescript": "4.3.5",
"vite": "2.9.16",
"vite-plugin-web-extension": "^1.4.0",
"vite-plugin-zip-pack": "1.0.7"
}
}