-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.19 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
{
"name": "beat-greenhouse",
"version": "0.3.0",
"description": "Cultivate your songs as plants in a greenhouse",
"main": "src/index.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --tsconfig=tsconfig.json --loader:.glsl=text --minify --sourcemap --outfile=dist/bundle.js",
"dev": "esbuild src/index.ts --bundle --tsconfig=tsconfig.json --loader:.glsl=text --watch --sourcemap --outfile=dist/bundle.js",
"serve": "npx http-server"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/peterrosenthal/beat-greenhouse.git"
},
"author": "Peter Rosenthal",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://gitlab.com/peterrosenthal/beat-greenhouse/issues"
},
"homepage": "https://gitlab.com/peterrosenthal/beat-greenhouse#readme",
"dependencies": {
"@magenta/music": "^1.23.1",
"@tensorflow/tfjs": "^2.7.0",
"@types/three": "^0.138.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"esbuild": "^0.14.14",
"eslint": "^8.7.0",
"http-server": "^14.1.0",
"lil-gui": "^0.16.0",
"simplex-noise": "^3.0.1",
"three": "^0.138.3",
"typescript": "^4.5.5"
}
}