-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.78 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "voxtape",
"productName": "VoxTape",
"version": "0.2.0-beta",
"license": "MIT",
"main": "apps/electron-shell/dist/main.js",
"scripts": {
"dev": "node scripts/build-native.mjs && node apps/electron-shell/build.mjs && concurrently -k -n ng,electron \"NX_IGNORE_UNSUPPORTED_TS_SETUP=true npx nx serve renderer\" \"wait-on http://localhost:4200 && electron apps/electron-shell/dist/main.js\"",
"build": "NX_IGNORE_UNSUPPORTED_TS_SETUP=true npx nx build renderer && node apps/electron-shell/build.mjs",
"build:renderer": "NX_IGNORE_UNSUPPORTED_TS_SETUP=true npx nx build renderer",
"build:electron": "node apps/electron-shell/build.mjs",
"download-model": "bash scripts/download-model.sh",
"download-llm-model": "bash scripts/download-llm-model.sh",
"rebuild-native": "echo 'sherpa-onnx-node ships prebuilt binaries — no rebuild needed'",
"generate-icon": "node scripts/generate-icon.mjs",
"package": "node scripts/package.mjs",
"make": "node scripts/package.mjs --make",
"build:native": "cd libs/native-audio-capture && npx napi build --platform --release",
"postinstall": "node scripts/ensure-electron.mjs && electron-rebuild -f -w better-sqlite3",
"test": "vitest run",
"test:watch": "vitest"
},
"private": true,
"devDependencies": {
"@angular-devkit/core": "~21.1.0",
"@angular-devkit/schematics": "~21.1.0",
"@angular/build": "~21.1.0",
"@angular/cli": "~21.1.0",
"@angular/compiler-cli": "~21.1.0",
"@angular/language-service": "~21.1.0",
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron/rebuild": "^4.0.3",
"@eslint/js": "^9.8.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@nx/angular": "^22.5.0",
"@nx/eslint": "22.5.0",
"@nx/eslint-plugin": "22.5.0",
"@nx/js": "^22.5.0",
"@nx/nest": "^22.5.0",
"@nx/node": "^22.5.0",
"@nx/web": "22.5.0",
"@nx/webpack": "22.5.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@schematics/angular": "~21.1.0",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.18",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "20.19.9",
"@types/ws": "8.18.1",
"@typescript-eslint/utils": "^8.40.0",
"angular-eslint": "^21.0.1",
"concurrently": "^9.2.1",
"electron": "^40.4.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"jsdom": "^27.1.0",
"node-addon-api": "^6.1.0",
"nx": "22.5.0",
"prettier": "^2.6.2",
"react-refresh": "^0.10.0",
"ts-loader": "^9.5.4",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.40.0",
"vite": "^7.3.1",
"vite-plugin-node": "^7.0.0",
"vitest": "^4.0.8",
"wait-on": "^9.0.4",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"workspaces": [
"packages/*",
"apps/*",
"libs/*"
],
"dependencies": {
"@angular/common": "~21.1.0",
"@angular/compiler": "~21.1.0",
"@angular/core": "~21.1.0",
"@angular/forms": "~21.1.0",
"@angular/platform-browser": "~21.1.0",
"@angular/router": "~21.1.0",
"@nestjs/common": "^11.1.13",
"@nestjs/core": "^11.1.13",
"@nestjs/platform-express": "^11.0.0",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"@tiptap/core": "^3.19.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"@voxtape/native-audio-capture": "file:libs/native-audio-capture",
"better-sqlite3": "^12.6.2",
"node-llama-cpp": "^3.15.1",
"reflect-metadata": "^0.1.14",
"rxjs": "~7.8.0",
"sherpa-onnx-node": "^1.12.24",
"ws": "8.18.1"
}
}