-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1006 Bytes
/
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
{
"name": "@rolldown/plugin-node-polyfills",
"version": "1.0.0",
"description": "node polyfills for Rolldown",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/index.cjs",
"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": "npm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rolldown/rolldown-plugin-node-polyfills.git"
},
"keywords": [
"rolldown"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/rolldown/rolldown-plugin-node-polyfills/issues"
},
"homepage": "https://github.com/rolldown/rolldown-plugin-node-polyfills#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^22.2.0",
"rolldown": "canary",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}