forked from pt-plugins/PT-Plugin-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.06 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "pt-plugin-plus",
"version": "1.5.2",
"author": {
"name": "ronggang",
"url": "https://github.com/ronggang"
},
"archiverName": "PT-Plugin-Plus",
"displayName": "PT 助手 Plus",
"homepage": "https://github.com/ronggang/PT-Plugin-Plus",
"scripts": {
"serve": "vue-cli-service serve --mode=test",
"build": "yarn build:index && yarn build:background && yarn build:content && yarn resource",
"lint": "vue-cli-service lint",
"background": "webpack --config webpack/prod-background.js && webpack --config webpack/prod-content.js",
"dev": "yarn dev:index && yarn dev:background && yarn dev:content && yarn resource",
"dev-s": "cd debug && yarn install && tsc && node ./dist/index.js",
"dev:index": "yarn install && vue-cli-service build --mode=development",
"dev:background": "webpack --config webpack/dev-background.js --progress",
"dev:content": "webpack --config webpack/dev-content.js --progress",
"dev:bc": "yarn dev:background && yarn dev:content",
"resource": "cd debug && yarn install && tsc && node ./dist/buildResource.js",
"build:index": "yarn install && vue-cli-service build",
"build:background": "webpack --config webpack/prod-background.js --progress",
"build:content": "webpack --config webpack/prod-content.js --progress",
"zip": "ts-node --skip-project ./deploy/index.ts -z",
"package": "ts-node --skip-project ./deploy/index.ts -p",
"release": "yarn build && yarn package",
"deploy:chrome": "ts-node --skip-project ./deploy/index.ts -pc",
"deploy": "yarn build && yarn deploy:chrome"
},
"dependencies": {
"archiver": "^3.1.1",
"basiccontext": "^3.5.1",
"blueimp-md5": "^2.10.0",
"commander": "^4.0.1",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.8.11",
"dom-to-image": "^2.6.0",
"dotenv": "^8.2.0",
"extend": "^3.0.2",
"file-saver": "^2.0.0",
"highcharts": "^7.2.2",
"highcharts-vue": "^1.2.0",
"i18next": "^17.0.3",
"jszip": "^3.4.0",
"marked": "^0.7.0",
"parse-torrent": "^7.0.1",
"ua-parser-js": "^0.7.20",
"url-parse": "^1.4.4",
"vue": "^2.5.17",
"vue-class-component": "^6.3.2",
"vue-i18n": "^8.11.2",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vuetify": "^1.3.0",
"vuex": "^3.0.1",
"webdav": "^2.10.0"
},
"devDependencies": {
"@types/archiver": "^3.0.0",
"@types/blueimp-md5": "^2.7.0",
"@types/chrome": "^0.0.75",
"@types/crypto-js": "^3.1.43",
"@types/dom-to-image": "^2.6.2",
"@types/extend": "^3.0.0",
"@types/file-saver": "^2.0.0",
"@types/jquery": "^3.3.22",
"@types/marked": "^0.7.2",
"@types/parse-torrent": "^5.8.3",
"@types/ua-parser-js": "^0.7.33",
"@types/url-parse": "^1.4.2",
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-plugin-typescript": "^3.2.0",
"@vue/cli-service": "^3.0.5",
"@vue/eslint-config-typescript": "^3.2.0",
"babel-eslint": "^10.0.1",
"chrome-webstore-upload": "^0.2.2",
"copy-webpack-plugin": "^4.6.0",
"crx": "^5.0.1",
"crx3": "^1.1.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"sass": "^1.23.7",
"sass-loader": "^7.1.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"terser-webpack-plugin": "^2.2.1",
"ts-loader": "^5.3.1",
"ts-node": "^8.5.2",
"typescript": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"git-commit-id": "^2.0.1",
"vue-cli-plugin-vuetify": "^0.4.6",
"vue-template-compiler": "^2.5.17",
"vuetify-loader": "^1.0.5",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript"
],
"rules": {
"no-console": 0
},
"parserOptions": {
"parser": "typescript-eslint-parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}