forked from SevenTV/Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.4 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
{
"name": "seventv",
"displayName": "7TV",
"description": "Improve your viewing experience on Twitch & YouTube with new features, emotes, vanity and performance.",
"private": true,
"version": "3.0.14",
"dev_version": "1.0",
"scripts": {
"start": "NODE_ENV=dev yarn build:dev && NODE_ENV=dev vite --mode dev",
"build:section:app": "vite build --config vite.config.ts",
"build:section:background": "vite build --config vite.config.background.ts",
"build:section:content": "vite build --config vite.config.content.ts",
"build:section:worker": "vite build -c vite.config.worker.ts",
"build-hosted:section:worker": "vite build --config vite.config.worker.ts",
"build-hosted:section:site": "vite build --config vite.config.hosted.ts",
"build:dev": "NODE_ENV=dev run-s build:section:*",
"build:prod": "NODE_ENV=production vue-tsc --noEmit && run-s build:section:*",
"build-hosted:dev": "NODE_ENV=dev run-s build-hosted:section:*",
"build-hosted:prod": "NODE_ENV=production vue-tsc --noEmit && run-s build-hosted:section:*",
"watch:section:background": "vite build --config vite.config.background.ts --watch",
"watch:section:content": "vite build --config vite.config.content.ts --watch",
"watch:section:worker": "vite build --config vite.config.worker.ts --watch",
"watch": "NODE_ENV=dev run-p watch:section:*",
"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",
"script:compile-emoji": "tsc -p script/script.tsconfig.json --outDir dist/ && node dist/compile-emojis.js"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@apollo/client": "^3.7.15",
"@floating-ui/dom": "^1.4.1",
"@intlify/unplugin-vue-i18n": "^0.11.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/chrome": "^0.0.237",
"@types/dompurify": "^3.0.2",
"@types/fs-extra": "^11.0.1",
"@types/marked": "^5.0.0",
"@types/node": "^20.3.1",
"@types/sharedworker": "^0.0.96",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/apollo-composable": "^4.0.0-beta.7",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vueuse/core": "^10.2.0",
"@vueuse/head": "^1.1.26",
"chokidar": "^3.5.3",
"color2k": "^2.0.2",
"date-fns": "^2.30.0",
"dexie": "^3.2.4",
"dompurify": "^3.0.3",
"eslint": "^8.43.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.0",
"graphql": "^16.7.1",
"marked": "^5.1.0",
"nanoid": "^4.0.2",
"npm-run-all": "^4.1.5",
"pinia": "^2.1.4",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.8",
"sass": "^1.63.4",
"stylelint": "^15.9.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-scss": "^5.0.1",
"terser": "^5.18.1",
"tldts": "^6.0.8",
"typescript": "^5.1.3",
"ua-parser-js": "^1.0.35",
"uuid": "^9.0.0",
"vite": "^4.3.9",
"vite-plugin-chrome-extension": "^0.0.7",
"vue-i18n": "9.2.2",
"vue-router": "4.2.2",
"vue-tsc": "^1.8.0",
"webextension-polyfill-ts": "^0.26.0"
}
}