2021-06-29 16:40:54 +02:00
|
|
|
{
|
2021-09-05 23:07:02 +02:00
|
|
|
"name": "@theatre/react",
|
2023-01-04 20:35:56 +01:00
|
|
|
"version": "0.6.0-dev.3",
|
2021-06-29 16:40:54 +02:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"author": {
|
|
|
|
"name": "Aria Minaei",
|
|
|
|
"email": "aria@theatrejs.com",
|
|
|
|
"url": "https://github.com/AriaMinaei"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/AriaMinaei/theatre",
|
2021-09-05 23:07:02 +02:00
|
|
|
"directory": "packages/react"
|
2021-06-29 16:40:54 +02:00
|
|
|
},
|
2021-08-07 22:30:29 +02:00
|
|
|
"main": "dist/index.js",
|
2021-06-29 16:40:54 +02:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2021-08-07 23:38:24 +02:00
|
|
|
"prepack": "node ../../devEnv/ensurePublishing.js",
|
2021-06-29 16:40:54 +02:00
|
|
|
"typecheck": "yarn run build",
|
2021-10-02 13:48:02 +02:00
|
|
|
"build": "run-s build:ts build:js build:api-json",
|
2021-06-29 16:40:54 +02:00
|
|
|
"build:ts": "tsc --build ./tsconfig.json",
|
2021-08-04 21:51:25 +02:00
|
|
|
"build:js": "node -r esbuild-register ./devEnv/build.ts",
|
2021-10-02 13:48:02 +02:00
|
|
|
"build:api-json": "api-extractor run --local --config devEnv/api-extractor.json",
|
2022-05-17 20:53:01 +02:00
|
|
|
"prepublish": "node ../../devEnv/ensurePublishing.js",
|
|
|
|
"clean": "rm -rf ./dist && rm -f tsconfig.tsbuildinfo"
|
2021-06-29 16:40:54 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-02 13:48:02 +02:00
|
|
|
"@microsoft/api-extractor": "^7.18.11",
|
2021-06-29 16:40:54 +02:00
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
"@types/lodash-es": "^4.17.4",
|
|
|
|
"@types/node": "^15.6.2",
|
|
|
|
"@types/react": "^17.0.9",
|
|
|
|
"@types/react-dom": "^17.0.6",
|
2021-07-23 14:04:01 +02:00
|
|
|
"esbuild": "^0.12.15",
|
2021-06-29 16:40:54 +02:00
|
|
|
"esbuild-register": "^2.5.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
2021-09-01 10:41:54 +02:00
|
|
|
"typescript": "^4.4.2"
|
2021-06-29 16:40:54 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-08-07 22:30:29 +02:00
|
|
|
"@theatre/dataverse": "workspace:*",
|
2021-06-29 16:40:54 +02:00
|
|
|
"lodash-es": "^4.17.21",
|
|
|
|
"queue-microtask": "^1.2.3"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2021-09-21 21:24:11 +02:00
|
|
|
"react": "*",
|
|
|
|
"react-dom": "*"
|
2021-06-29 16:40:54 +02:00
|
|
|
}
|
2021-08-06 11:44:20 +02:00
|
|
|
}
|