main
json 32 lines 828 Bytes
Raw
1 {
2 "name": "babel-plugin-react-compiler-rust",
3 "version": "0.0.0-experimental",
4 "description": "Babel plugin for React Compiler (Rust backend).",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "license": "MIT",
8 "files": [
9 "dist",
10 "!*.tsbuildinfo"
11 ],
12 "scripts": {
13 "build": "tsc",
14 "watch": "tsc --watch",
15 "snap": "yarn workspace snap run snap",
16 "snap:build": "yarn workspace snap run build",
17 "snap:ci": "yarn snap:build && yarn snap --rust",
18 "test": "yarn snap:ci"
19 },
20 "dependencies": {
21 "@babel/types": "^7.26.0"
22 },
23 "devDependencies": {
24 "@babel/core": "^7.2.0",
25 "typescript": "^5.0.0"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/react/react.git",
30 "directory": "compiler/packages/babel-plugin-react-compiler-rust"
31 }
32 }