-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "rollup-plugin-userscript",
"version": "0.3.7",
"description": "Rollup plugin for userscript",
"author": "Gerald <[email protected]>",
"license": "MIT",
"scripts": {
"ci": "run-s lint test",
"lint": "eslint src",
"dev": "rollup -wc",
"clean": "del-cli dist",
"build:js": "rollup -c",
"build:types": "tsc",
"build": "run-s ci clean build:js build:types",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"prepare": "husky install",
"prepublishOnly": "run-s build"
},
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"rollup",
"userscript"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@babel/runtime": "^7.23.7",
"@rollup/pluginutils": "^5.1.0",
"estree-walker": "^3.0.3",
"is-reference": "^3.0.2",
"magic-string": "^0.30.7"
},
"devDependencies": {
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"@gera2ld/plaid-test": "^2.6.0",
"@types/node": "^20.10.6",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"husky": "^8.0.3"
},
"repository": "[email protected]:violentmonkey/rollup-plugin-userscript.git",
"engines": {
"node": ">=18"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
]
}
}