-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
232 lines (232 loc) · 10.3 KB
/
Copy pathpackage.json
File metadata and controls
232 lines (232 loc) · 10.3 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"name": "audio-v",
"version": "0.4.44",
"private": true,
"license": "AGPL-3.0-only",
"engines": {
"node": ">=22"
},
"overrides": {
"brace-expansion": "5.0.9",
"fast-uri": "3.1.5",
"js-yaml": "4.3.1"
},
"description": "Cross-platform audio integrity and fidelity workstation powered by the Oracle Engine.",
"author": {
"name": "DRAZY"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRAZY/Audio-V.git"
},
"homepage": "https://github.com/DRAZY/Audio-V#readme",
"bugs": {
"url": "https://github.com/DRAZY/Audio-V/issues"
},
"main": "dist-electron/electron/main.js",
"scripts": {
"dev": "npm run build:electron && concurrently -k \"vite --host 127.0.0.1\" \"tsc -p tsconfig.electron.json --watch --preserveWatchOutput\" \"wait-on http://127.0.0.1:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .\"",
"build:renderer": "vite build",
"build:electron": "tsc -p tsconfig.electron.json",
"postinstall": "node scripts/patch-brace-expansion-compat.mjs",
"cli": "npm run build:electron && node dist-electron/electron/cli.js",
"build": "npm run typecheck && npm run build:renderer && npm run build:electron",
"typecheck": "vue-tsc --noEmit && tsc -p tsconfig.electron.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"fixtures:fidelity": "node scripts/generate-fidelity-fixtures.mjs",
"fixtures:defects": "node scripts/generate-defect-fixtures.mjs",
"validate:fidelity": "npm run build:electron && node scripts/validate-fidelity-corpus.mjs",
"validate:defects": "npm run build:electron && node scripts/validate-defect-corpus.mjs",
"corpus:import": "node scripts/import-validation-reference.mjs",
"corpus:plan": "node scripts/plan-validation-corpus.mjs",
"corpus:download": "node scripts/download-external-dataset.mjs",
"corpus:extract": "node scripts/extract-external-dataset.mjs",
"corpus:verify-download": "node scripts/verify-external-dataset-archive.mjs",
"corpus:publish-scorecard": "node scripts/publish-validation-scorecard.mjs",
"corpus:import:dataset": "node scripts/import-external-dataset.mjs",
"corpus:generate": "node scripts/generate-real-world-corpus.mjs",
"calibration:export:development": "node scripts/export-origin-calibration-features.mjs --splits development",
"calibration:analyze:development": "node scripts/analyze-origin-calibration-features.mjs --splits development",
"calibration:separation:development": "node scripts/analyze-origin-feature-separation.mjs --splits development",
"calibration:export:maestro": "node scripts/export-origin-calibration-features.mjs --population observational --datasets maestro-v3 --splits challenge --label maestro-observational",
"calibration:separation:maestro": "node scripts/analyze-origin-feature-separation.mjs --label maestro-observational",
"calibration:evaluate:texture": "node scripts/evaluate-origin-texture-candidate.mjs",
"calibration:evaluate:multivariate": "node scripts/evaluate-origin-multivariate-candidate.mjs",
"validation:status": "node scripts/write-real-world-validation-status.mjs",
"validate:real-world": "npm run build:electron && node scripts/evaluate-real-world-corpus.mjs && node scripts/write-real-world-validation-status.mjs",
"validate:platform": "npm run build:electron && node scripts/write-platform-validation.mjs",
"validate:formats": "npm run build:electron && node scripts/validate-format-matrix.mjs",
"verify:accessibility": "npm run build:renderer && electron scripts/verify-accessibility.cjs",
"verify:layout": "npm run build:renderer && electron scripts/verify-responsive-layout.cjs",
"verify:spectrogram-channels": "npm run build && electron scripts/verify-spectrogram-channels.cjs",
"verify:comparison-visuals": "npm run build && electron scripts/verify-comparison-visuals.cjs",
"verify:acceptance-evidence": "npm run build:renderer && electron scripts/verify-acceptance-evidence.cjs",
"verify:worker": "node scripts/verify-oracle-worker.mjs",
"verify:cli": "npm run build:electron && node scripts/verify-headless-cli.mjs",
"benchmark:scale": "npm run build:electron && node scripts/benchmark-scale.mjs",
"verify:defects": "node scripts/verify-defect-register.mjs",
"verify:manual-acceptance": "node scripts/verify-manual-acceptance.mjs",
"verify": "npm run test && npm run build && electron scripts/verify-accessibility.cjs && electron scripts/verify-responsive-layout.cjs && electron scripts/verify-spectrogram-channels.cjs && electron scripts/verify-comparison-visuals.cjs && electron scripts/verify-identity-preferences.cjs && electron scripts/verify-acceptance-evidence.cjs && node scripts/validate-fidelity-corpus.mjs && node scripts/validate-defect-corpus.mjs && node scripts/evaluate-real-world-corpus.mjs && node scripts/write-real-world-validation-status.mjs && node scripts/validate-format-matrix.mjs && npm run verify:worker && node scripts/verify-headless-cli.mjs && npm run verify:defects && npm run verify:manual-acceptance && npm audit --omit=dev",
"prepare:notices": "node scripts/write-third-party-notices.mjs",
"prepare:manifest": "node scripts/write-engine-manifest.mjs",
"provision:engines": "node scripts/provision-engines.mjs && node scripts/provision-analysis-tools.mjs",
"provision:analysis-tools": "node scripts/provision-analysis-tools.mjs",
"prepare:engines": "node scripts/verify-ffmpeg.mjs && node scripts/verify-analysis-tools.mjs",
"prepare:services": "node scripts/write-external-service-config.mjs",
"prepare:release": "npm run prepare:engines && npm run prepare:notices && npm run prepare:manifest && npm run prepare:services && npm run validate:real-world",
"dist:mac": "npm run prepare:release && npm run build && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --publish never --mac dmg --arm64 --universal -c.mac.identity=- -c.mac.hardenedRuntime=false -c.mac.notarize=false",
"dist:mac:signed": "npm run prepare:release && npm run build && electron-builder --publish never --mac dmg --arm64 --universal",
"dist:win": "npm run prepare:release && npm run build && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --publish never --win nsis portable --x64 -c.win.signExecutable=false",
"dist:win:signed": "npm run prepare:release && npm run build && electron-builder --publish never --win nsis portable --x64",
"dist:win:arm64": "npm run prepare:release && npm run build && electron-builder --publish never --win nsis portable --arm64",
"verify:artifacts:mac": "node scripts/verify-release-artifacts.mjs mac",
"verify:artifacts:win": "node scripts/verify-release-artifacts.mjs win",
"verify:runtime:mac": "node scripts/verify-packaged-runtime.mjs mac",
"verify:runtime:win": "node scripts/verify-packaged-runtime.mjs win",
"verify:release-policy": "node scripts/verify-release-policy.mjs",
"verify:contributor-policy": "node scripts/verify-contributor-policy.mjs",
"verify:release-candidate": "node scripts/verify-release-candidate.mjs",
"release:checksums": "node scripts/write-checksums.mjs",
"release:manifest": "node scripts/write-release-manifest.mjs"
},
"dependencies": {
"docx": "^9.5.1",
"jszip": "^3.10.1",
"music-metadata": "^11.12.3",
"pdfkit": "^0.17.2",
"vue": "^3.5.32"
},
"devDependencies": {
"@types/node": "^22.19.19",
"@types/pdfkit": "^0.17.5",
"@vitejs/plugin-vue": "^6.0.0",
"axe-core": "^4.12.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.8.5",
"electron-builder": "^26.8.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^3.2.7",
"vue-tsc": "^3.2.1",
"wait-on": "^9.0.3"
},
"build": {
"appId": "app.audiov.desktop",
"productName": "Audio-V",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"extraResources": [
{
"from": "build/THIRD_PARTY_NOTICES.txt",
"to": "THIRD_PARTY_NOTICES.txt"
},
{
"from": "build/engine-manifest.json",
"to": "engine-manifest.json"
},
{
"from": "build/external-services.json",
"to": "external-services.json"
},
{
"from": "LICENSE",
"to": "LICENSE.txt"
},
{
"from": "NOTICE",
"to": "NOTICE.txt"
},
{
"from": "SOURCE_OFFER.md",
"to": "SOURCE_OFFER.md"
},
{
"from": "TRADEMARKS.md",
"to": "TRADEMARKS.md"
},
{
"from": "build/real-world-validation-latest.json",
"to": "real-world-validation.json"
}
],
"mac": {
"icon": "build/icon.png",
"category": "public.app-category.music",
"extendInfo": {
"NSRemovableVolumesUsageDescription": "Audio-V needs access to user-selected removable volumes to inventory and analyze audio files.",
"NSNetworkVolumesUsageDescription": "Audio-V needs access to user-selected network volumes to inventory and analyze audio files."
},
"extraResources": [
{
"from": "build/cli/mac",
"to": "cli"
},
{
"from": "vendor/ffmpeg/mac-universal",
"to": "engine"
}
],
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"universal"
]
}
],
"hardenedRuntime": true,
"notarize": true,
"gatekeeperAssess": false
},
"dmg": {
"title": "Audio-V ${version}"
},
"win": {
"icon": "build/icon.png",
"extraResources": [
{
"from": "build/cli/win",
"to": "cli"
},
{
"from": "vendor/ffmpeg/win-${arch}",
"to": "engine"
}
],
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"license": "LICENSE"
},
"portable": {
"artifactName": "${productName}-Portable-${version}-${arch}.${ext}"
}
}
}