-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
52 lines (52 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
{
"name": "tampermonkey-template",
"version": "0.0.1",
"description": "以斗鱼直播自动切换清晰度作为示例的油猴脚本开发模板",
"main": "/dist/douyu.user.js",
"scripts": {
"start": "webpack serve --config ./config/webpack.dev.js --env filename=douyu.dev.user.js",
"dev": "webpack --watch --config ./config/webpack.dev.js --env filename=douyu.dev.user.js",
"build": "npm run lint:fix && webpack --config ./config/webpack.prod.js --env filename=douyu.user.js",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/Eished/tampermonkey-template.git"
},
"keywords": [
"douyu",
"TamperMonkey",
"typescript"
],
"author": "Eished",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eished/tampermonkey-template/issues"
},
"homepage": "https://github.com/Eished/tampermonkey-template",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@types/tampermonkey": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"prettier": "^2.6.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {}
}