-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "three-projected-material",
"description": "Material which projects a texture onto an object",
"version": "2.2.2",
"type": "module",
"exports": {
".": {
"types": "./ProjectedMaterial.d.ts",
"import": "./build/ProjectedMaterial.module.js",
"require": "./build/ProjectedMaterial.cjs.js"
}
},
"repository": "[email protected]:marcofugaro/three-projected-material.git",
"author": "Marco Fugaro <[email protected]>",
"license": "MIT",
"files": [
"build/"
],
"scripts": {
"start": "vite",
"build": "rollup -c",
"build-examples": "vite build"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@types/three": "^0.149.0",
"eases": "^1.0.8",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"lil-gui": "^0.18.0",
"rollup": "^3.17.2",
"stats.js": "^0.17.0",
"three": "0.149.0",
"vite": "^4.1.4"
}
}