-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.15 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.15 KB
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
{
"name": "morphaweb",
"version": "1.1.12",
"module": "src/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "bun --watch server.ts",
"build": "bun build --compile ./server.ts --outfile dist/morphaweb",
"build:mac": "bun build --compile ./server.ts --outfile dist/morphaweb-mac-arm64 --target bun-darwin-arm64",
"build:mac-intel": "bun build --compile ./server.ts --outfile dist/morphaweb-mac-x64 --target bun-darwin-x64",
"build:linux": "bun build --compile ./server.ts --outfile dist/morphaweb-linux-arm64 --target bun-linux-arm64",
"build:windows": "bun build --compile ./server.ts --outfile dist/morphaweb-windows-x64 --target bun-windows-x64-baseline",
"release:patch": "npm version patch && git push origin main --tags"
},
"devDependencies": {
"@types/bun": "latest",
"autoprefixer": "^10.4.2",
"gh-pages": "^3.2.3"
},
"dependencies": {
"@fontsource/roboto-mono": "^4.5.8",
"crunker": "^2.4.0",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"wavefile": "^11.0.0",
"wavesurfer.js": "^6.6.2"
},
"peerDependencies": {
"typescript": "^5"
},
"private": true
}