-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "@dgreenheck/ez-tree",
"author": "Daniel Greenheck",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dgreenheck/ez-tree.git"
},
"homepage": "https://dgreenheck.github.io/ez-tree/",
"bugs": {
"url": "https://github.com/dgreenheck/ez-tree/issues"
},
"type": "module",
"main": "build/ez-tree.umd.js",
"module": "build/ez-tree.es.js",
"exports": {
".": {
"import": "./build/ez-tree.es.js",
"require": "./build/ez-tree.umd.js"
}
},
"files": [
"build",
"src",
"LICENSE",
"package.json",
"README.md"
],
"types": "./build/ez-tree.es.d.ts",
"scripts": {
"build:app": "vite build --config vite.app.config.js",
"build:lib": "vite build --config vite.lib.config.js",
"build:watch": "vite build --config vite.lib.config.js --watch",
"app": "npm run build:lib && vite --config vite.app.config.js",
"preview": "vite preview"
},
"devDependencies": {
"@types/three": "^0.169.0",
"prettier": "3.3.3",
"three": "^0.167.x",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-static-copy": "^1.0.5"
},
"peerDependencies": {
"three": ">=0.167"
},
"keywords": [
"threejs",
"three-js",
"procedural",
"generation",
"tree"
],
"dependencies": {
"tweakpane": "^4.0.4"
}
}