-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "@rolldown/plugin-node-polyfills",
"version": "1.0.3",
"description": "node polyfills for Rolldown",
"keywords": [
"rolldown",
"rolldown-plugin"
],
"homepage": "https://github.com/rolldown/rolldown-plugin-node-polyfills#readme",
"bugs": {
"url": "https://github.com/rolldown/rolldown-plugin-node-polyfills/issues"
},
"license": "MIT",
"author": "Evan You",
"repository": {
"type": "git",
"url": "git+https://github.com/rolldown/rolldown-plugin-node-polyfills.git"
},
"files": [
"dist/index.cjs",
"dist/index.d.ts"
],
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest --run",
"prebuild": "rm -rf dist",
"build": "node scripts/build.js && tsc -p . && rolldown -c rolldown.config.mjs",
"prepublishOnly": "pnpm build",
"lint": "oxlint",
"format": "oxfmt"
},
"devDependencies": {
"@types/node": "^22.2.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.42.0",
"rolldown": "^1.0.0-rc.1",
"typescript": "^5.5.4",
"vitest": "^4.0.0"
},
"packageManager": "pnpm@10.28.1",
"compatiblePackages": {
"schemaVersion": 1,
"rollup": {
"type": "incompatible",
"reason": "Uses Rolldown-specific APIs"
},
"rolldown": {
"type": "compatible",
"versions": "^1.0.0-rc.0"
},
"vite": {
"type": "incompatible",
"reason": "Does not support dev"
}
}
}