-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 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
{
"name": "three-low-poly",
"version": "0.9.22",
"description": "Low poly modeling for Three.js",
"author": "Jason Sturges <[email protected]> (https://jasonsturges.com)",
"homepage": "https://jasonsturges.com/three-low-poly/",
"repository": "github:jasonsturges/three-low-poly",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"scope": "jasonsturges"
},
"keywords": [
"three",
"low-poly",
"assets",
"3d"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js",
"browser": "./dist/index.iife.js",
"umd": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"start:examples": "vite --host --open --config vite-examples.config.js",
"build:examples": "vite build --config vite-examples.config.js"
},
"dependencies": {
"lil-gui": "^0.19.2",
"three": "^0.170.0",
"three-stdlib": "^2.34.0"
},
"devDependencies": {
"@types/three": "^0.170.0",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-typescript": "^1.0.4"
}
}