-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "paper-cranes-audio",
"version": "1.0.2",
"description": "",
"type": "module",
"main": "dist/src/audio/AudioProcessor.js",
"scripts": {
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node esbuild.build.js",
"dev": "node esbuild.dev.js",
"format": "eslint --fix ."
},
"author": "hypnodroid",
"license": "UNLICENSED",
"dependencies": {
"@preact/signals": "^1.3.1",
"debounce": "^2.2.0",
"htm": "^3.1.1",
"hypnosound": "^1.8.1",
"preact": "^10.25.4",
"twgl-base.js": "^5.5.3"
},
"devDependencies": {
"@types/vscode": "^1.96.0",
"esbuild": "^0.25.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-css-modules": "^0.3.0",
"esbuild-plugin-html": "^1.0.0",
"eslint": "^8.57.1",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.2"
},
"languages": [
{
"id": "paper-cranes-fragment-shader",
"aliases": [
"GLSL",
"glsl"
],
"extensions": [
".frag",
".glsl"
]
}
]
}