theatre/packages/dataverse/package.json
2021-10-02 13:48:02 +02:00

42 lines
1.2 KiB
JSON

{
"name": "@theatre/dataverse",
"version": "0.4.6",
"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/dataverse"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepack": "node ../../devEnv/ensurePublishing.js",
"typecheck": "yarn run build:ts",
"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"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.11",
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.6.2",
"esbuild": "^0.12.15",
"esbuild-register": "^2.5.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.4.2"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}