theatre/packages/r3f/package.json
Fülöp 3d10325873
Add tests for Theatre.js + popular setups in the ecosystem (#165)
This implements some basic infra for testing Theatre.js with popular setups such as npm/yarn/pnpm, webpack/vite/parcel, js/ts, etc.

So far, the only existing setup has been with create-react-app. Will add more in the future.

Co-authored-by: Fülöp <fulopkovacs@users.noreply.github.com>
Co-authored-by: Aria Minaei <aria.minaei@gmail.com>
2022-05-17 20:53:01 +02:00

66 lines
1.6 KiB
JSON

{
"name": "@theatre/r3f",
"version": "0.4.0-dev.23",
"license": "Apache-2.0",
"authors": [
{
"name": "Andrew Prifer",
"email": "andrew.prifer@gmail.com",
"url": "https://github.com/AndrewPrifer"
},
{
"name": "Aria Minaei",
"email": "aria@theatrejs.com",
"url": "https://github.com/AriaMinaei"
}
],
"repository": {
"type": "git",
"url": "https://github.com/AriaMinaei/theatre",
"directory": "packages/r3f"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**/*"
],
"scripts": {
"prepack": "yarn run build",
"typecheck": "yarn run build",
"build": "tsc --build ./tsconfig.json",
"prepublish": "yarn run build",
"clean": "rm -rf ./dist && rm -f tsconfig.tsbuildinfo"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.6.2",
"@types/react": "^17.0.9",
"@types/styled-components": "^5.1.9",
"npm-run-all": "^4.1.5",
"typescript": "^4.4.2"
},
"dependencies": {
"@react-three/drei": "^7.3.1",
"@theatre/react": "workspace:*",
"lodash-es": "^4.17.21",
"polished": "^4.1.3",
"react-icons": "^4.2.0",
"react-merge-refs": "^1.1.0",
"react-shadow": "^19.0.3",
"react-use-measure": "^2.0.4",
"reakit": "^1.3.8",
"styled-components": "^5.3.0",
"zustand": "^3.5.1"
},
"peerDependencies": {
"@react-three/fiber": "^7.0.6",
"@theatre/core": "*",
"@theatre/studio": "*",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"three": "^0.131.3"
}
}