theatre/packages/react/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@theatre/react",
2023-08-07 17:10:41 +02:00
"version": "0.7.0-dev.1",
"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",
"directory": "packages/react"
},
2021-08-07 22:30:29 +02:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepack": "node ../../devEnv/ensurePublishing.js",
"typecheck": "yarn run build",
2021-10-02 13:48:02 +02:00
"build": "run-s build:ts build:js build:api-json",
"build:ts": "tsc --build ./tsconfig.json",
"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",
"prepublish": "node ../../devEnv/ensurePublishing.js",
"clean": "rm -rf ./dist && rm -f tsconfig.tsbuildinfo"
},
"devDependencies": {
2021-10-02 13:48:02 +02:00
"@microsoft/api-extractor": "^7.18.11",
"@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",
"esbuild-register": "^2.5.0",
"npm-run-all": "^4.1.5",
2023-08-08 08:43:24 +02:00
"typescript": "5.1.6"
},
"dependencies": {
2021-08-07 22:30:29 +02:00
"@theatre/dataverse": "workspace:*",
"lodash-es": "^4.17.21",
"queue-microtask": "^1.2.3"
},
"peerDependencies": {
2021-09-21 21:24:11 +02:00
"react": "*",
"react-dom": "*"
}
2021-08-06 11:44:20 +02:00
}