-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@react-three/xr",
"version": "3.4.0",
"description": "React components and hooks for creating VR/AR applications with react-three-fiber",
"keywords": [
"xr",
"ar",
"vr",
"react",
"three",
"react-three-fiber"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-xr.git"
},
"bugs": {
"url": "https://github.com/pmndrs/react-xr/issues"
},
"homepage": "https://github.com/pmndrs/react-xr#readme",
"author": "Oleksandr Dubenko (https://github.com/sniok)",
"maintainers": [
"Michael Bashurov (https://github.com/saitonakamura)",
"Cody Bennett (https://github.com/codyjasonbennett)"
],
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/*"
],
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c",
"prepare": "yarn prebuild && yarn build",
"lint": "eslint src/**/*.{js,ts,jsx,tsx} && prettier src/**/*.{js,ts,jsx,tsx} --check",
"lint-fix": "prettier src/**/*.{js,ts,jsx,tsx} --write && eslint src/**/*.{js,ts,jsx,tsx} --fix",
"test": "echo no tests yet",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc --emitDeclarationOnly"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.*(js|jsx|ts|tsx)'"
}
},
"devDependencies": {
"@babel/core": "7.17.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-modules-commonjs": "7.16.8",
"@babel/plugin-transform-parameters": "7.16.7",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/plugin-transform-template-literals": "7.16.7",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@react-three/fiber": "^7.0.26",
"@types/jest": "^25.2.1",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/three": "^0.137.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.67.1",
"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.12.0",
"three": "^0.137.5",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@react-three/fiber": ">=6.0.3",
"react": ">=17.0",
"react-dom": ">=17.0",
"three": ">=0.137"
},
"dependencies": {
"react-merge-refs": "^1.1.0",
"three-stdlib": "^2.8.6"
}
}