-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.85 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
{
"name": "@ozramos/layers.p5",
"version": "0.3.3",
"description": "A layer-based p5.js framework with live editing and MIDI support",
"main": "dist/layers.p5.js",
"private": false,
"scripts": {
"start": "vuepress dev docs",
"new": "node ./node_scripts/newSketch.js",
"remix": "node ./node_scripts/remixSketch.js",
"delete": "node ./node_scripts/deleteSketch.js",
"build": "npm run build:lib && npm run build:docs",
"build:lib": "rollup --config rollup.config.js",
"build:docs": "vuepress build docs",
"build:test": "npm run build:docs && npm run test",
"deploy": "gh-pages -d docs/.vuepress/dist --repo https://github.com/layersp5/layersp5.github.io.git",
"test": "http-server docs/.vuepress/dist",
"postinstall": "node ./node_scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/layersp5/layers.p5.git"
},
"author": "Oz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/layersp5/layers.p5/issues"
},
"homepage": "https://layersp5.github.io",
"dependencies": {
"@tweakpane/plugin-essentials": "^0.1.4",
"emoji-name-map": "^1.2.9",
"fs-extra": "^11.1.1",
"gemoji": "^7.1.0",
"lodash-es": "^4.17.21",
"p5": "^1.9.1",
"p5.brush": "^1.1.2",
"p5.capture": "^1.2.0",
"parallax-js": "^3.1.0",
"tweakpane": "^3.0.8",
"webmidi": "^3.0.20"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.1",
"@vuepress/plugin-container": "^2.0.0-beta.48",
"@vuepress/plugin-register-components": "^2.0.0-beta.45",
"@vuepress/plugin-theme-data": "^2.0.0-beta.45",
"cpx": "^1.5.0",
"gh-pages": "^5.0.0",
"http-server": "^14.1.1",
"rollup": "^2.67.0",
"rollup-plugin-external-globals": "^0.6.1",
"vuepress": "^2.0.0-beta.45"
},
"resolutions": {
"vite": "2.8.6"
}
}