-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "p5.tree",
"version": "0.0.44",
"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/"
],
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"reset": "rm -rf node_modules dist package-lock.json && npm install",
"link:core": "npm link @nakednous/tree @nakednous/ui",
"unlink:core": "npm unlink --no-save @nakednous/tree @nakednous/ui && npm install @nakednous/tree @nakednous/ui",
"prepublishOnly": "npm run build",
"postpublish": "npm run link:core"
},
"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.23",
"@nakednous/ui": "^0.0.10"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"rollup": "^4.60.3"
}
}