-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 3.13 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
{
"name": "seventv",
"displayName": "7TV",
"description": "Improve your viewing experience on Twitch & YouTube with new features, emotes, vanity and performance.",
"private": true,
"version": "3.0.0",
"dev_version": "19.8",
"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:dev": "NODE_ENV=dev run-s build:section:*",
"build:prod": "NODE_ENV=production vue-tsc --noEmit && run-s build:section:*",
"build:mv2:prod": "vue-tsc --noEmit && MV2=true vite build --minify es2021 && vite build -c vite.config.worker.ts --minify es2021",
"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.2.47"
},
"devDependencies": {
"@apollo/client": "^3.7.9",
"@floating-ui/dom": "^1.2.3",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/chrome": "^0.0.219",
"@types/dompurify": "^2.4.0",
"@types/fs-extra": "^11.0.1",
"@types/marked": "^4.0.8",
"@types/node": "^18.14.6",
"@types/sharedworker": "^0.0.93",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/apollo-composable": "^4.0.0-beta.4",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.1.15",
"chokidar": "^3.5.3",
"color2k": "^2.0.2",
"date-fns": "^2.29.3",
"dexie": "^3.2.3",
"dompurify": "^3.0.1",
"eslint": "^8.35.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"graphql": "^16.6.0",
"marked": "^4.2.12",
"nanoid": "^4.0.1",
"npm-run-all": "^4.1.5",
"pinia": "^2.0.32",
"postcss-html": "^1.5.0",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"stylelint": "^15.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^10.0.1",
"stylelint-config-recommended-scss": "^9.0.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"terser": "^5.16.5",
"typescript": "^4.9.5",
"ua-parser-js": "^1.0.33",
"uuid": "^9.0.0",
"vite": "^4.1.4",
"vite-plugin-chrome-extension": "^0.0.7",
"vue-router": "4",
"vue-tsc": "^1.2.0",
"webextension-polyfill-ts": "^0.26.0"
}
}