-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "paper-cranes-audio",
"version": "1.0.2",
"description": "",
"type": "module",
"main": "dist/src/audio/AudioProcessor.js",
"scripts": {
"start": "npm run dev",
"serve": "npx live-server --wait=50 -q --port=6969 ./dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./esbuild.js",
"dev": "npm run build && concurrently \"npm run serve\" \"npm run build:watch\"",
"build:watch": "chokidar '**/*.*' -i 'node_modules/*' -i 'dist/**/*.*' -c 'npm run build'",
"format": "eslint --fix ."
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"@preact/signals": "^1.2.2",
"debounce": "^2.0.0",
"htm": "^3.1.1",
"html": "^1.0.0",
"hypnosound": "^1.8.0",
"preact": "^10.19.3",
"twgl-base.js": "^5.5.3"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"esbuild": "^v0.20.2",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-css-modules": "^0.3.0",
"esbuild-plugin-html": "^1.0.0",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.0.1",
"live-server": "^1.1.0",
"mini-css-extract-plugin": "^2.7.6",
"ncp": "^2.0.0",
"prettier": "^3.1.1"
}
}