2023-01-22 18:01:31 +01:00
|
|
|
{
|
|
|
|
"name": "theatric",
|
2023-08-10 15:00:30 +02:00
|
|
|
"version": "0.7.0",
|
2023-01-22 18:01:31 +01:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"author": {
|
|
|
|
"name": "Andrew Prifer",
|
|
|
|
"email": "andrew.prifer@gmail.com",
|
|
|
|
"url": "https://github.com/AndrewPrifer"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/theatre-js/theatre",
|
|
|
|
"directory": "packages/theatric"
|
|
|
|
},
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"prepack": "node ../../devEnv/ensurePublishing.js",
|
|
|
|
"typecheck": "yarn run build",
|
|
|
|
"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",
|
|
|
|
"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": {
|
|
|
|
"@microsoft/api-extractor": "^7.18.11",
|
2023-08-03 20:42:40 +02:00
|
|
|
"@theatre/dataverse": "workspace:*",
|
2023-01-22 18:01:31 +01:00
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
"@types/node": "^15.6.2",
|
2023-08-03 20:42:40 +02:00
|
|
|
"@types/react": "^18.2.18",
|
2023-01-22 18:01:31 +01:00
|
|
|
"esbuild": "^0.12.15",
|
|
|
|
"esbuild-register": "^2.5.0",
|
2023-01-22 18:51:55 +01:00
|
|
|
"lodash-es": "^4.17.21",
|
2023-01-25 15:07:53 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-08-08 08:43:24 +02:00
|
|
|
"typescript": "5.1.6"
|
2023-01-22 18:01:31 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@theatre/core": "workspace:*",
|
|
|
|
"@theatre/react": "workspace:*",
|
2023-01-22 18:51:55 +01:00
|
|
|
"@theatre/studio": "workspace:*"
|
2023-01-22 18:01:31 +01:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-08-03 20:42:40 +02:00
|
|
|
"react": "*"
|
2023-01-22 18:01:31 +01:00
|
|
|
}
|
|
|
|
}
|