-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "@react-three/babel",
"version": "1.0.2",
"description": "A Babel plugin for tree-shaking three.js via JSX.",
"keywords": [
"react",
"babel",
"threejs",
"transform",
"plugin"
],
"author": "Umar Ahmed (https://github.com/umar-ahmed)",
"maintainers": [
"Cody Bennett (https://github.com/codyjasonbennett)"
],
"homepage": "https://github.com/pmndrs/react-three-babel",
"repository": "https://github.com/pmndrs/react-three-babel",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"sideEffects": false,
"peerDependencies": {
"@babel/core": ">=7",
"@react-three/fiber": ">=6",
"three": "*"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@react-three/fiber": "^8.13.0",
"@types/babel__core": "^7.20.0",
"@types/babel__helper-plugin-utils": "^7.10.3",
"@types/node": "^20.1.7",
"@types/three": "^0.152.0",
"three": "^0.152.2",
"typescript": "^5.0.4",
"vite": "^4.3.7",
"vitest": "^0.31.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"prepublishOnly": "yarn run build && yarn run test"
}
}