-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.66 KB
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
{
"name": "three-fenestra",
"version": "0.3.0",
"description": "Three.js plugin: interior mapping shader with optional PBR front layer. Drop-in MeshStandardMaterial subclass usable in vanilla Three.js and React Three Fiber.",
"author": "Edgar Pérez <codedgar.dev@gmail.com> (https://github.com/codedgar)",
"license": "MIT",
"homepage": "https://github.com/codedgar/three-fenestra#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codedgar/three-fenestra.git"
},
"bugs": {
"url": "https://github.com/codedgar/three-fenestra/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./starter/*": "./starter/*"
},
"files": [
"dist",
"src",
"starter",
"README.md"
],
"scripts": {
"dev": "vite",
"dev:instanced": "vite examples/instanced",
"dev:minimal": "vite examples/minimal",
"build": "vite build && tsc -p tsconfig.build.json",
"build:demo": "vite build --mode demo && node scripts/copy-demo-assets.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build"
},
"peerDependencies": {
"three": ">=0.150.0"
},
"devDependencies": {
"@types/three": "^0.160.0",
"opentype.js": "^2.0.0",
"playwright": "^1.60.0",
"three": "^0.160.0",
"tweakpane": "^4.0.5",
"typescript": "^5.4.0",
"vite": "^5.2.0"
},
"keywords": [
"three",
"threejs",
"shader",
"interior-mapping",
"fenestra",
"windows",
"facade",
"pbr",
"r3f"
]
}