-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 986 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
33
34
35
36
37
{
"name": "bun-plugin-react-compiler",
"version": "0.3.2",
"description": "Bun plugin for React Compiler.",
"repository": {
"type": "git",
"url": "git+https://github.com/mnpenner/bun-plugin-react-compiler.git"
},
"author": "Mark Penner <git@mpen.ca>",
"module": "./dist/react-compiler.js",
"type": "module",
"files": [
"dist"
],
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/bun": "latest",
"react": "^19.2.4",
"typescript": "^5"
},
"peerDependencies": {
"@babel/core": "^7.29.0",
"babel-plugin-react-compiler": "^1.0.0"
},
"scripts": {
"build": "bun run build.ts && tsc -p tsconfig.build.json",
"test:types": "tsc -p tsconfig.typecheck.json",
"test:impl": "bun test",
"test": "bun run --parallel 'test:*'"
},
"main": "./dist/react-compiler.js",
"exports": {
".": "./dist/react-compiler.js",
"./package.json": "./package.json"
},
"types": "./dist/react-compiler.d.ts"
}