-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "youtube-live-chat-filter",
"description": "Chrome Extension for Filtering Chat Messages on YouTube Live.",
"version": "0.0.11",
"dependencies": {
"@vue/composition-api": "^1.6.2",
"nanoid": "^3.3.4",
"vue": "~2.6.14",
"vuetify": "^2.6.6",
"vuex": "~3.6.2",
"vuex-module-decorators": "~1.2.0",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@fiahfy/eslint-config-vue": "^0.0.17",
"@fiahfy/prettier-config": "^0.0.2",
"@fiahfy/tsconfig": "^0.0.1",
"@types/chrome": "^0.0.188",
"concurrently": "^7.2.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"mv3-hot-reload": "^0.2.7",
"prettier": "^2.6.2",
"sass": "~1.32.13",
"sass-loader": "^13.0.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"vue-loader": "~15.9.8",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"private": true,
"productName": "Chat Filter for YouTube Live",
"scripts": {
"build": "webpack",
"dev": "concurrently npm:watch:*",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier -c --ignore-path .gitignore .",
"package": "npm run build && mkdir -p dist && zip -r dist/archive.zip app",
"prepare": "husky install",
"test": "npm run lint",
"watch:dist": "mv3-hot-reload",
"watch:src": "webpack -w --config webpack.config.dev.js"
}
}