-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 923 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 923 Bytes
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
{
"name": "playcanvas-waterfall-display",
"version": "1.0.0",
"description": "A spectrogram waterfall rendered as a 3D mesh using Play Canvas and the Web Audio API.",
"main": "dist/game.js",
"scripts": {
"start": "npm run watch",
"watch": "npm run build -- -w",
"build": "npx rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lloydevans/playcanvas-waterfall-display.git"
},
"author": "Lloyd Evans",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^5.0.2",
"rollup": "^2.22.1",
"rollup-plugin-string": "^3.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"playcanvas": "^1.34.0",
"tslib": "^2.0.1"
},
"bugs": {
"url": "https://github.com/lloydevans/playcanvas-waterfall-display/issues"
},
"homepage": "https://github.com/lloydevans/playcanvas-waterfall-display#readme"
}