theatre/packages/theatric/package.json

51 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "theatric",
2023-08-10 15:00:30 +02:00
"version": "0.7.0",
"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",
"@theatre/dataverse": "workspace:*",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.2",
"@types/react": "^18.2.18",
"esbuild": "^0.12.15",
"esbuild-register": "^2.5.0",
"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"
},
"dependencies": {
"@theatre/core": "workspace:*",
"@theatre/react": "workspace:*",
"@theatre/studio": "workspace:*"
},
"peerDependencies": {
"react": "*"
}
}