2021-06-18 13:05:06 +02:00
|
|
|
{
|
2021-09-06 10:19:10 +02:00
|
|
|
"name": "@theatre/r3f",
|
2023-02-01 12:33:53 +01:00
|
|
|
"version": "0.6.1-dev.1",
|
2021-06-18 13:05:06 +02:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
],
|
2021-06-18 19:54:35 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/AriaMinaei/theatre",
|
2021-09-06 10:19:10 +02:00
|
|
|
"directory": "packages/r3f"
|
2021-06-18 19:54:35 +02:00
|
|
|
},
|
2022-05-17 20:53:01 +02:00
|
|
|
"main": "dist/index.js",
|
2022-09-13 21:37:39 +02:00
|
|
|
"module": "dist/index.esm.js",
|
2021-08-07 21:41:07 +02:00
|
|
|
"sideEffects": false,
|
2021-06-18 13:05:06 +02:00
|
|
|
"files": [
|
|
|
|
"dist/**/*"
|
|
|
|
],
|
2022-05-27 21:59:51 +02:00
|
|
|
"exports": {
|
2022-09-13 21:37:39 +02:00
|
|
|
".": {
|
|
|
|
"import": "./dist/index.esm.js",
|
|
|
|
"require": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"./dist/extension": {
|
|
|
|
"import": "./dist/extension/index.esm.js",
|
|
|
|
"require": "./dist/extension/index.js"
|
|
|
|
}
|
2022-05-27 21:59:51 +02:00
|
|
|
},
|
2021-06-18 13:05:06 +02:00
|
|
|
"scripts": {
|
2021-10-14 18:52:19 +02:00
|
|
|
"prepack": "yarn run build",
|
2021-06-18 13:05:06 +02:00
|
|
|
"typecheck": "yarn run build",
|
2022-05-27 21:59:51 +02:00
|
|
|
"build": "run-s build:ts build:js",
|
|
|
|
"build:js": "node -r esbuild-register devEnv/bundle.ts",
|
|
|
|
"build:ts": "tsc --build ./tsconfig.json",
|
2022-05-17 20:53:01 +02:00
|
|
|
"prepublish": "yarn run build",
|
|
|
|
"clean": "rm -rf ./dist && rm -f tsconfig.tsbuildinfo"
|
2021-06-18 13:05:06 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-27 21:59:51 +02:00
|
|
|
"@react-three/drei": "^7.3.1",
|
|
|
|
"@theatre/react": "workspace:*",
|
2021-06-18 13:05:06 +02:00
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
"@types/lodash-es": "^4.17.4",
|
|
|
|
"@types/node": "^15.6.2",
|
|
|
|
"@types/react": "^17.0.9",
|
2021-07-04 19:14:00 +02:00
|
|
|
"@types/styled-components": "^5.1.9",
|
2022-05-27 21:59:51 +02:00
|
|
|
"esbuild": "^0.12.15",
|
|
|
|
"esbuild-register": "^2.5.0",
|
2021-06-18 13:05:06 +02:00
|
|
|
"lodash-es": "^4.17.21",
|
2022-05-27 21:59:51 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-07-13 16:13:15 +02:00
|
|
|
"polished": "^4.1.3",
|
2021-06-18 13:05:06 +02:00
|
|
|
"react-icons": "^4.2.0",
|
|
|
|
"react-merge-refs": "^1.1.0",
|
2022-04-22 18:05:21 +02:00
|
|
|
"react-shadow": "^19.0.3",
|
2021-06-18 13:05:06 +02:00
|
|
|
"react-use-measure": "^2.0.4",
|
|
|
|
"reakit": "^1.3.8",
|
2022-09-13 21:37:39 +02:00
|
|
|
"styled-components": "^5.3.5",
|
2022-05-27 21:59:51 +02:00
|
|
|
"typescript": "^4.4.2",
|
2021-06-18 13:05:06 +02:00
|
|
|
"zustand": "^3.5.1"
|
2021-08-06 11:43:33 +02:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-05-27 21:59:51 +02:00
|
|
|
"@react-three/fiber": ">=7.0.6",
|
2021-08-06 11:43:33 +02:00
|
|
|
"@theatre/core": "*",
|
2021-08-07 22:30:29 +02:00
|
|
|
"@theatre/studio": "*",
|
2022-05-27 21:59:51 +02:00
|
|
|
"react": ">=17.0.2",
|
|
|
|
"react-dom": ">=17.0.2",
|
|
|
|
"three": ">=0.131.3"
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|
2021-08-06 11:43:33 +02:00
|
|
|
}
|