-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.93 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
34
35
36
37
38
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"build:musicXMLtoLabel": "bun build --compile ./engine/vsinsy/bin/musicXMLtoLabel.ts --outfile ./bin/musicXMLtoLabel",
"build:musicXMLtoLabel:win": "bun build --compile --target=bun-windows-x64 ./engine/vsinsy/bin/musicXMLtoLabel.ts --outfile ./bin/musicXMLtoLabel.exe",
"build:bin:win": "bun build --compile --target=bun-windows-x64 ./engine/vsinsy/bin/stub.ts --outfile ./bin/musicXMLtoLabel.exe",
"build:stub:win": "bun build --compile --target=bun-windows-x64 ./engine/vsinsy/bin/stub.ts --outfile ./bin/musicXMLtoLabel.exe",
"build:rule": "bun build ./engine/vsinsy/bin/rule-api.ts --minify --bundle --format esm --target bun --sourcemap=inline --outfile ./bin/rule.js && bun run scripts/copy-ttm-assets.ts ./bin",
"build:amadeus-plugin": "bun run ./scripts/build-amadeus-plugin.ts",
"release:amadeus-plugin": "bun run build:amadeus-plugin",
"build": "bun run scripts/build.ts",
"start": "NODE_ENV=production bun src/index.ts",
"fmt": "oxfmt",
"lint": "oxlint --type-aware --import-plugin --react-plugin",
"regen:example": "bun run ./engine/vsinsy/bin/musicXMLtoLabel.ts ./example/lathuyenuocmo.musicxml ./example/lathuyenuocmo.full.lab ./example/lathuyenuocmo.mono.lab && bun run ./engine/vsinsy/bin/musicXMLtoLabel.ts ./example/emlamamnoncuadang.musicxml ./example/emlamamnoncuadang.full.lab ./example/emlamamnoncuadang.mono.lab"
},
"dependencies": {
"@amsvs/api": "^1.1.0",
"@xmldom/xmldom": "^0.9.11",
"onnxruntime-web": "^1.27.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"read-vietnamese-number": "2.3.1",
"svgo": "^4.0.2"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"oxfmt": "^0.52.0",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^0.23.0"
}
}