-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
97 lines (97 loc) · 3.79 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
94
95
96
97
{
"name": "seventv",
"displayName": "7TV",
"description": "Improve your viewing experience on Twitch & YouTube with new features, emotes, vanity and performance.",
"private": true,
"version": "3.1.5",
"dev_version": "2.0",
"scripts": {
"start": "cross-env NODE_ENV=dev yarn build:dev && cross-env NODE_ENV=dev vite --mode dev",
"build:section:app": "vite build --config vite.config.mts",
"build:section:background": "vite build --config vite.config.background.mts",
"build:section:content": "vite build --config vite.config.content.mts",
"build:section:worker": "vite build -c vite.config.worker.mts",
"build-hosted:section:worker": "vite build --config vite.config.worker.mts",
"build-hosted:section:site": "vite build --config vite.config.hosted.mts",
"build:dev": "cross-env NODE_ENV=dev run-s build:section:*",
"build:prod": "cross-env NODE_ENV=production vue-tsc --noEmit && run-s build:section:*",
"build-hosted:dev": "cross-env NODE_ENV=dev run-s build-hosted:section:*",
"build-hosted:prod": "cross-env NODE_ENV=production vue-tsc --noEmit && run-s build-hosted:section:*",
"watch:section:background": "vite build --config vite.config.background.mts --watch",
"watch:section:content": "vite build --config vite.config.content.mts --watch",
"watch:section:worker": "vite build --config vite.config.worker.mts --watch",
"watch": "cross-env 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:style:fix": "stylelint --fix **/*.{vue,scss,css} --ignore-path .gitignore",
"lint:js:fix": "eslint --fix --ext .js,.vue,.ts --ignore-path .gitignore .",
"lint": "yarn lint:js && yarn lint:style",
"lint:fix": "yarn lint:js:fix && yarn lint:style:fix",
"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.9.1",
"@floating-ui/dom": "^1.5.1",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/chrome": "^0.0.253",
"@types/dompurify": "^3.0.2",
"@types/fs-extra": "^11.0.1",
"@types/marked": "^6.0.0",
"@types/node": "^20.5.1",
"@types/sharedworker": "^0.0.107",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-vue": "^4.3.1",
"@vue/apollo-composable": "^4.0.0-beta.8",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vueuse/core": "^10.3.0",
"@vueuse/head": "^2.0.0",
"chokidar": "^3.5.3",
"color2k": "^2.0.2",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"dexie": "^3.2.4",
"dompurify": "^3.0.5",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"graphql": "^16.8.0",
"javascript-obfuscator": "^4.1.0",
"marked": "^10.0.0",
"nanoid": "^5.0.3",
"npm-run-all": "^4.1.5",
"pinia": "^2.1.6",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.7",
"prettier": "^3.0.2",
"rollup-plugin-obfuscator": "^1.0.3",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-scss": "^5.1.0",
"terser": "^5.19.2",
"tldts": "^6.0.14",
"typescript": "^5.3.2",
"ua-parser-js": "^1.0.35",
"uuid": "^9.0.0",
"vite": "^5.0.2",
"vite-plugin-chrome-extension": "^0.0.7",
"vue-i18n": "9.7.1",
"vue-router": "4.2.5",
"vue-tsc": "^1.8.8",
"webextension-polyfill-ts": "^0.26.0"
}
}