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
64 lines (64 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.3 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
{
"name": "rolldown-plugin-userscript",
"version": "1.1.2",
"description": "Rolldown plugin for UserScripts",
"author": "Seized and Desisted",
"license": "MIT",
"scripts": {
"ci": "bun run lint && bun run test",
"lint": "biome check",
"dev": "tsdown --watch",
"clean": "rm -rf dist",
"build": "tsdown",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"readme": "ReadME.md",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist",
"ReadME.md",
"LICENSE"
],
"keywords": [
"rolldown",
"userscript"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@oxc-project/types": "^0.134.0",
"oxc-parser": "^0.134.0",
"oxc-walker": "^1.0.0",
"rolldown-string": "^0.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.1",
"globals": "^17.6.0",
"rolldown": "^1.0.3",
"tsdown": "0.22.1",
"typescript": "^6.0.3"
},
"peerDependencies": {
"rolldown": "^1.0.0-rc.18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MinibloxCheaters2/rolldown-plugin-userscript.git"
},
"engines": {
"node": ">=18",
"bun": ">=1"
}
}