forked from violentmonkey/rollup-plugin-userscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 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
{
"name": "rolldown-plugin-userscript",
"version": "1.1.0",
"description": "Rolldown plugin for UserScripts",
"author": "Gerald <gera2ld@live.com>",
"license": "MIT",
"scripts": {
"ci": "bun run lint && bun run test",
"lint": "biome check",
"dev": "tsdown --watch",
"clean": "rm -rf dist",
"build": "tsdown",
"test": "vitest --run",
"prepublishOnly": "bun run build"
},
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist"
],
"keywords": [
"rolldown",
"userscript"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@oxc-project/types": "^0.115.0",
"@rolldown/pluginutils": "^1.0.0-rc.6",
"@rollup/pluginutils": "^5.3.0",
"oxc-parser": "^0.115.0",
"oxc-walker": "^0.7.0",
"rolldown-string": "^0.2.1",
"vitest": "^4.0.18"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@biomejs/biome": "^2.4.4",
"globals": "^17.3.0",
"husky": "^9.1.7",
"rolldown": "^1.0.0-rc.6",
"typescript": "^5.9.3",
"tsdown": "0.21.0-beta.2"
},
"peerDependencies": {
"rolldown": "^1.0.0-rc.6"
},
"repository": "git@github.com:violentmonkey/rollup-plugin-userscript.git",
"engines": {
"node": ">=18",
"bun": ">=1"
}
}