-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 947 Bytes
/
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
{
"name": "@violentmonkey/generator-userscript",
"version": "0.1.0",
"description": "Build a userscript with rollup",
"type": "module",
"files": [
"lib"
],
"keywords": [
"yeoman-generator",
"rollup",
"userscript"
],
"author": "Gerald <[email protected]>",
"license": "ISC",
"dependencies": {
"globby": "^14.0.0",
"yeoman-generator": "^7.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gera2ld/generator-userscript.git"
},
"bugs": {
"url": "https://github.com/gera2ld/generator-userscript/issues"
},
"homepage": "https://github.com/gera2ld/generator-userscript#readme",
"devDependencies": {
"npm-check-updates": "^16.14.12",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"update:deps": "ncu --packageFile lib/generators/app/templates/_root/package.json"
}
}