-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (57 loc) · 1.55 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
{
"name": "p5.tree",
"version": "0.0.29",
"description": "Render pipeline for p5.js v2 — pose and camera interpolation, space transforms, frustum visibility, HUD, post-processing pipe, picking, and declarative control panels.",
"type": "module",
"main": "dist/p5.tree.esm.js",
"module": "dist/p5.tree.esm.js",
"exports": {
".": {
"import": "./dist/p5.tree.esm.js"
}
},
"files": [
"dist/"
],
"workspaces": [
"deps/tree",
"deps/ui"
],
"scripts": {
"build": "npm run build:tree && npm run build:ui && rollup -c",
"build:tree": "npm run build -w @nakednous/tree",
"build:ui": "npm run build -w @nakednous/ui",
"clean": "rm -rf dist deps/*/dist",
"rebuild": "npm run clean && npm run build",
"reset": "rm -rf node_modules dist deps/*/dist package-lock.json && npm install",
"publish:tree": "npm run build:tree && npm publish -w @nakednous/tree --access public",
"publish:ui": "npm run build:ui && npm publish -w @nakednous/ui --access public",
"publish:p5.tree": "npm run build && npm publish"
},
"keywords": [
"p5",
"p5.js",
"webgl",
"graphics",
"tree",
"shader",
"addon",
"spaces",
"camera",
"keyframes",
"geometry"
],
"author": "Jean Pierre Charalambos <nakednous@gmail.com>",
"license": "AGPL-3.0-only",
"peerDependencies": {
"p5": "^2.2.3"
},
"dependencies": {
"@nakednous/tree": "^0.0.11",
"@nakednous/ui": "^0.0.7"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"rollup": "^4.60.0"
}
}