theatre/packages/dataverse/package.json

41 lines
1 KiB
JSON
Raw Normal View History

2021-06-18 13:05:06 +02:00
{
"name": "@theatre/dataverse",
2021-09-30 22:02:45 +02:00
"version": "0.4.4",
2021-06-18 13:05:06 +02:00
"license": "Apache-2.0",
"author": {
"name": "Aria Minaei",
"email": "aria@theatrejs.com",
"url": "https://github.com/AriaMinaei"
},
2021-06-18 19:54:35 +02:00
"repository": {
"type": "git",
"url": "https://github.com/AriaMinaei/theatre",
"directory": "packages/dataverse"
},
2021-08-07 22:30:29 +02:00
"main": "dist/index.js",
2021-06-18 13:05:06 +02:00
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepack": "node ../../devEnv/ensurePublishing.js",
2021-06-18 13:05:06 +02:00
"typecheck": "yarn run build",
"build": "run-s build:ts build:js",
"build:ts": "tsc --build ./tsconfig.json",
"build:js": "node -r esbuild-register ./devEnv/build.ts",
"prepublish": "node ../../devEnv/ensurePublishing.js"
2021-06-18 13:05:06 +02:00
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.6.2",
2021-07-23 14:04:01 +02:00
"esbuild": "^0.12.15",
"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-18 13:05:06 +02:00
},
"dependencies": {
"lodash-es": "^4.17.21"
}
2021-08-06 11:44:20 +02:00
}