-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1001 Bytes
/
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
{
"name": "shader-park-live-coding",
"version": "1.0.0",
"description": "Starter template with Shader Park for live coding",
"main": "index.js",
"repository": "https://github.com/shader-park/shader-park-live-coding",
"author": "Torin Blankensmith & Peter Whidden",
"license": "MIT",
"private": false,
"sideEffects": true,
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build --no-source-maps index.html --no-minify"
},
"staticFiles": {
"staticPath": "fonts",
"watcherGlob": "**"
},
"dependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^0.20.0",
"@codemirror/lang-javascript": "^0.20.1",
"@codemirror/next": "^0.16.0",
"parcel-plugin-inline-source": "^1.0.0",
"shader-park-core": "^0.2.6",
"three": "^0.155.0",
"tweakpane": "^3.0.8"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0"
}
}