forked from pt-plugins/PT-Plugin-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.92 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
{
"name": "pt-plugin-plus",
"version": "1.6.1",
"packageManager": "yarn@1.19.1",
"author": {
"name": "ronggang",
"url": "https://github.com/ronggang"
},
"archiverName": "PT-Plugin-Plus",
"displayName": "PT 助手 Plus",
"homepage": "https://github.com/pt-plugins/PT-Plugin-Plus",
"scripts": {
"serve": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service serve --mode=test",
"build": "set NODE_OPTIONS=--openssl-legacy-provider & 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"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"basiccontext": "^3.5.1",
"blueimp-md5": "^2.19.0",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.11.5",
"dom-to-image": "^2.6.0",
"dotenv": "^8.2.0",
"extend": "^3.0.2",
"file-saver": "^2.0.5",
"github-markdown-css": "^5.1.0",
"highcharts": "^10.2.1",
"highcharts-vue": "^1.4.0",
"i18next": "^21.9.1",
"jszip": "^3.10.1",
"marked": "^4.2.4",
"parse-torrent": "^7.0.1",
"ua-parser-js": "^1.0.2",
"url-parse": "^1.5.10",
"vue": "~2.6.14",
"vue-class-component": "^6.3.2",
"vue-i18n": "^8.11.2",
"vue-property-decorator": "^7.0.0",
"vue-router": "~3.5.4",
"vuetify": "^1.3.0",
"vuex": "^3.0.1",
"webdav": "^3.6.2"
},
"devDependencies": {
"@types/blueimp-md5": "^2.18.0",
"@types/chrome": "^0.0.75",
"@types/crypto-js": "^3.1.43",
"@types/dom-to-image": "^2.6.4",
"@types/extend": "^3.0.1",
"@types/file-saver": "^2.0.5",
"@types/jquery": "^3.5.14",
"@types/marked": "^4.0.8",
"@types/parse-torrent": "^5.8.4",
"@types/ua-parser-js": "^0.7.36",
"@types/url-parse": "^1.4.8",
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-plugin-typescript": "^3.2.0",
"@vue/cli-service": "^3.0.5",
"@vue/eslint-config-typescript": "^11.0.0",
"babel-eslint": "^10.0.1",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^9.0.0",
"git-rev-sync": "^3.0.2",
"sass": "^1.54.8",
"sass-loader": "~7.3.1",
"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.1.3",
"vue-cli-plugin-vuetify": "^0.4.6",
"vue-template-compiler": "~2.6.14",
"vuetify-loader": "~1.7.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"resolutions": {
"@types/node": "~18.11.9"
},
"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"
]
}