-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1000 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1000 Bytes
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
{
"name": "@rolldown/benchmark-jsx-remove-attributes",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"generate": "oxnode scripts/generate-app.ts",
"bench": "vitest bench --run",
"build:custom": "rolldown -c configs/custom.ts",
"build:babel": "rolldown -c configs/babel.ts",
"build:swc": "rolldown -c configs/swc.ts"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@oxc-node/cli": "^0.1.0",
"@rolldown/benchmark-utils": "workspace:*",
"@rolldown/plugin-babel": "file:../../babel",
"@rolldown/plugin-jsx-remove-attributes": "workspace:*",
"@rollup/plugin-swc": "^0.4.0",
"@swc/core": "^1.15.24",
"@swc/plugin-react-remove-properties": "^12.8.0",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-remove-properties": "^0.3.1",
"rolldown": "^1.0.0-rc.13"
}
}