theatre/packages/dataverse-react/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@theatre/dataverse-react",
"version": "1.0.0-dev.2",
"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-react"
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.cjs",
"node": "./dist/index.cjs"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"prepack": "yarn run build",
"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"
},
"devDependencies": {
"@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",
"esbuild": "^0.12.5",
"esbuild-register": "^2.5.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.2"
},
"dependencies": {
"lodash-es": "^4.17.21",
"queue-microtask": "^1.2.3"
},
"peerDependencies": {
"@theatre/dataverse": "*",
"raect-dom": "17.0.2",
"react": "17.0.2"
}
}