forked from loczek/ExtensionV3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.65 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
{
"name": "seventv",
"displayName": "7TV",
"description": "The Official 7TV Web Extension",
"private": true,
"version": "3.0.0.4000",
"scripts": {
"setup": "vite build --mode dev --minify esnext && vite build -c worker.vite.config.ts --mode dev",
"dev": "vite --mode dev",
"dev:worker": "vite build -c worker.vite.config.ts --watch --mode dev",
"build:dev": "vite build --mode dev --minify terser",
"build:stage": "vue-tsc --noEmit && vite build --minify terser --mode stage",
"build:prod": "vue-tsc --noEmit && vite build --minify terser && vite build -c worker.vite.config.ts --minify terser",
"build:mv2:prod": "vue-tsc --noEmit && MV2=true vite build --minify es2021 && vite build -c worker.vite.config.ts --minify es2021",
"build:worker": "vite build -c worker.vite.config.ts",
"dev:web": "vite",
"format": "prettier -w .",
"lint:style": "stylelint **/*.{vue,scss,css} --ignore-path .gitignore",
"lint:js": "eslint --ext .js,.vue,.ts --ignore-path .gitignore .",
"lint": "yarn lint:js && yarn lint:style",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.2.45"
},
"devDependencies": {
"@apollo/client": "^3.7.4",
"@floating-ui/dom": "^1.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/chrome": "^0.0.206",
"@types/dompurify": "^2.4.0",
"@types/fs-extra": "^9.0.13",
"@types/marked": "^4.0.8",
"@types/node": "^18.11.18",
"@types/sharedworker": "^0.0.88",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/apollo-composable": "^4.0.0-beta.1",
"@vue/compiler-sfc": "^3.2.45",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^9.10.0",
"chokidar": "^3.5.3",
"color2k": "^2.0.0",
"dexie": "^3.2.2",
"dompurify": "^2.4.3",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"fs-extra": "^11.1.0",
"graphql": "^16.6.0",
"marked": "^4.2.12",
"nanoid": "^4.0.0",
"npm-run-all": "^4.1.5",
"pinia": "^2.0.28",
"postcss-html": "^1.5.0",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"terser": "^5.16.1",
"typescript": "^4.9.4",
"ua-parser-js": "^1.0.32",
"uuid": "^9.0.0",
"vite": "^4.0.4",
"vite-plugin-chrome-extension": "^0.0.7",
"vue-tsc": "^1.0.22",
"webextension-polyfill-ts": "^0.26.0"
}
}