-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 KB
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
{
"name": "rollup-plugin-userscript",
"version": "1.1.0",
"description": "Rollup plugin for userscript",
"author": "Gerald <gera2ld@live.com>",
"license": "MIT",
"scripts": {
"ci": "pnpm run lint && pnpm run test",
"lint": "eslint",
"dev": "vite",
"clean": "rm -rf dist",
"build": "pnpm run ci && vite build",
"test": "vitest --run",
"prepare": "husky install",
"prepublishOnly": "pnpm run 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": {
"@rollup/pluginutils": "^5.3.0",
"estree-walker": "^3.0.3",
"is-reference": "^3.0.3",
"magic-string": "^0.30.21"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/estree": "^1.0.8",
"@types/node": "^24.10.1",
"acorn": "^8.15.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"rollup": "^4.53.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.13"
},
"peerDependencies": {
"rollup": "^4.0.0"
},
"repository": "git@github.com:violentmonkey/rollup-plugin-userscript.git",
"engines": {
"node": ">=18"
}
}