-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.72 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.72 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
68
69
70
71
72
73
{
"name": "@rolldown/plugin-babel",
"version": "0.2.2",
"description": "Rolldown plugin for Babel",
"keywords": [
"babel",
"plugin",
"rolldown",
"rolldown-plugin"
],
"homepage": "https://github.com/rolldown/plugins/tree/main/packages/babel#readme",
"bugs": {
"url": "https://github.com/rolldown/plugins/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rolldown/plugins.git",
"directory": "packages/babel"
},
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.mjs",
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest --project babel",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"picomatch": "^4.0.4"
},
"devDependencies": {
"@babel/core": "^8.0.0-rc.3",
"@babel/plugin-proposal-decorators": "^8.0.0-rc.3",
"@babel/plugin-transform-runtime": "^8.0.0-rc.3",
"@babel/runtime": "^8.0.0-rc.3",
"@types/node": "^24.12.2",
"@types/picomatch": "^4.0.3",
"rolldown": "1.0.0-rc.13",
"vite": "^8.0.7"
},
"peerDependencies": {
"@babel/core": "^7.29.0 || ^8.0.0-rc.1",
"@babel/plugin-transform-runtime": "^7.29.0 || ^8.0.0-rc.1",
"@babel/runtime": "^7.27.0 || ^8.0.0-rc.1",
"rolldown": "^1.0.0-rc.5",
"vite": "^8.0.0"
},
"peerDependenciesMeta": {
"@babel/plugin-transform-runtime": {
"optional": true
},
"@babel/runtime": {
"optional": true
},
"vite": {
"optional": true
}
},
"engines": {
"node": ">=22.12.0 || ^24.0.0"
},
"compatiblePackages": {
"schemaVersion": 1,
"rollup": {
"type": "incompatible",
"reason": "Uses Rolldown-specific APIs"
}
}
}