main
json 25 lines 600 Bytes
Raw
1 {
2 "name": "react-compiler-runtime",
3 "version": "0.0.1",
4 "description": "Runtime for React Compiler",
5 "license": "MIT",
6 "main": "dist/index.js",
7 "typings": "dist/index.d.ts",
8 "files": [
9 "dist",
10 "src"
11 ],
12 "peerDependencies": {
13 "react": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^0.0.0-experimental"
14 },
15 "scripts": {
16 "build": "rimraf dist && tsup",
17 "test": "echo 'no tests'",
18 "watch": "yarn build --watch"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/react/react.git",
23 "directory": "compiler/packages/react-compiler-runtime"
24 }
25 }