Files
react-three-fiber/package.json
Paul Henschel 4717b45180 4.2.9
2020-06-12 12:48:41 +02:00

133 lines
4.1 KiB
JSON

{
"name": "react-three-fiber",
"private": true,
"version": "4.2.9",
"description": "React-fiber renderer for THREE.js",
"main": "web.cjs.js",
"module": "web.js",
"react-native": "native.js",
"types": "targets/web.d.ts",
"files": [
"**"
],
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c && yarn copy",
"prepare": "npm run build",
"eslint": "eslint src/**/*.{js,ts,jsx,tsx}",
"test": "jest",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc && mv dist/src/* dist && rm -rf dist/src || true",
"typegen:components": "npx ts-node src/components/generateExports.ts",
"copy": "copyfiles package.json readme.md LICENSE dist && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.husky=undefined; this.prettier=undefined; this.jest=undefined; this['lint-staged']=undefined;\"",
"pack-dist": "cd dist && yarn pack && mv *.tgz .."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|jsx|ts|tsx)\""
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/react-three-fiber.git"
},
"keywords": [
"react",
"renderer",
"fiber",
"three",
"threejs"
],
"author": "Paul Henschel",
"contributors": [
"Birkir Gudjonsson <birkir.gudjonsson@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/drcmda/react-three-fiber/issues"
},
"homepage": "https://github.com/drcmda/react-three-fiber#readme",
"dependencies": {
"@babel/runtime": "^7.9.2",
"@juggle/resize-observer": "^3.1.3",
"drei": "^0.0.52",
"react-merge-refs": "^1.0.0",
"react-promise-suspense": "^0.3.2",
"react-reconciler": "0.25.1",
"react-use-measure": "^2.0.0",
"resize-observer-polyfill": "^1.5.1",
"scheduler": "0.19.1",
"tiny-emitter": "^2.1.0",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"react": ">=16.13",
"react-dom": ">=16.13",
"three": ">=0.115"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.24.0",
"@babel/core": "7.9.0",
"@babel/plugin-transform-modules-commonjs": "7.9.0",
"@babel/plugin-transform-parameters": "7.9.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/plugin-transform-template-literals": "7.8.3",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-native": "^0.62.1",
"@types/react-reconciler": "^0.18.0",
"@types/react-test-renderer": "^16.9.2",
"@types/scheduler": "^0.16.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copyfiles": "^2.2.0",
"cypress": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"expo-gl": "^8.1.0",
"expo-three": "^5.4.0",
"husky": "^4.2.3",
"jest": "^25.2.7",
"json": "^9.0.6",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.3.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"three": "^0.113.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3",
"wait-on": "^4.0.1"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-three-fiber"
}
}