-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.79 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
{
"name": "audio-browser-lab",
"private": true,
"version": "1.0.16",
"type": "module",
"bin": {
"abl": "packages/cli/dist/index.js",
"audio-browser-lab-mcp": "packages/mcp/dist/index.js"
},
"description": "A local-first browser audio compatibility and diagnostics workbench.",
"repository": {
"type": "git",
"url": "git+https://github.com/aribradshaw/audio-browser-lab.git"
},
"homepage": "https://aribradshaw.github.io/audio-browser-lab/",
"bugs": {
"url": "https://github.com/aribradshaw/audio-browser-lab/issues"
},
"workspaces": [
"packages/*"
],
"files": [
"packages/cli/dist",
"packages/mcp/dist",
"README.md",
"LICENSE"
],
"scripts": {
"predev": "npm run generate:sitemap && npm run build:packages",
"dev": "vite",
"generate:sitemap": "node scripts/generate-sitemap.mjs",
"build": "npm run generate:sitemap && npm run build:packages && tsc -b && vite build && node scripts/copy-fixtures.mjs",
"build:packages": "npm run build -w @audio-browser-lab/core --if-present && npm run build -w @audio-browser-lab/browser --if-present && npm run build -w @audio-browser-lab/howler --if-present && npm run build -w @audio-browser-lab/wavesurfer --if-present && npm run build -w @audio-browser-lab/cli --if-present && npm run build -w @audio-browser-lab/api --if-present && npm run build -w @audio-browser-lab/mcp --if-present",
"check": "npm run release:check && npm run generate:sitemap && npm run build:packages && npm run check --workspaces --if-present && tsc -b --pretty false",
"release:check": "node scripts/check-release.mjs",
"release:auto": "devlog-release prepare --production",
"release:auto:check": "devlog-release check --production",
"test": "node --test scripts/monthly-version.test.mjs && vitest run --exclude scripts/monthly-version.test.mjs --exclude tests/browser/**",
"test:browser": "playwright test",
"test:watch": "vitest",
"preview": "vite preview",
"abl": "node packages/cli/dist/index.js",
"pack:check": "node scripts/verify-packages.mjs",
"prepare": "npm run build:packages"
},
"dependencies": {
"@aribradshaw/devlog": "1.0.4",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/howler": "^2.2.12",
"@modelcontextprotocol/client": "^2.0.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"tsup": "^8.5.1",
"howler": "^2.2.4",
"typescript": "^5.9.3",
"vite": "^8.2.1",
"vitest": "^4.1.11",
"wavesurfer.js": "^7.12.11"
},
"overrides": {
"esbuild": "^0.28.1"
},
"main": "index.js",
"directories": {
"doc": "docs"
},
"keywords": [],
"author": "Flygon LC",
"license": "MIT"
}