-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 992 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 992 Bytes
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
{
"name": "@javascript-reverse-engineering-infrastructure/create-userscript",
"version": "1.0.0",
"description": "A template for developing userscripts with Node.js and Webpack",
"main": "index.js",
"bin": {
"create-userscript-template": "./bin/create-userscript.js"
},
"repository": "https://github.com/JSREI/userscript-template.git",
"namespace": "https://github.com/JSREI/userscript-template.git",
"document": "https://github.com/JSREI/userscript-template.git",
"keywords": [
"userscript",
"tampermonkey",
"greasemonkey",
"template",
"webpack",
"create"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js"
},
"author": "CC11001100 <CC11001100@qq.com>",
"license": "MIT",
"devDependencies": {
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"files": [
"bin/",
"template/",
"README.md",
"LICENSE"
]
}