-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.49 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
{
"name": "catalog",
"version": "3.51.2",
"description": "Open source audio software and hardware catalog",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"validate": "tsx scripts/validate.ts",
"validate:translations": "tsx scripts/validate-translations.ts",
"build": "tsx scripts/build-sqlite.ts",
"build:index": "tsx scripts/build-catalog-index.ts",
"patch": "tsx scripts/generate-patch.ts",
"dev": "tsx watch scripts/validate.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"assign-ids": "tsx scripts/assign-ids.ts",
"enrich-io": "tsx scripts/enrich-io.ts",
"format": "tsx scripts/format-yaml.ts",
"format:check": "prettier --check \"data/**/*.yaml\"",
"validate-urls": "tsx scripts/validate-urls.ts",
"validate:videos": "tsx scripts/validate-videos.ts",
"generate:context": "tsx scripts/generate-context.ts",
"generate:schemas": "tsx scripts/generate-json-schemas.ts",
"staleness-report": "tsx scripts/staleness-report.ts",
"dataset:audit": "tsx scripts/dataset-audit.ts",
"discontinued:report": "tsx scripts/discontinued-candidates.ts",
"discontinued:apply": "tsx scripts/apply-discontinued-tags.ts",
"identifier-coverage": "tsx scripts/identifier-coverage.ts",
"io-quality": "tsx scripts/io-quality.ts",
"benchmark": "tsx scripts/benchmark.ts",
"lint": "biome check scripts/ vitest.config.ts",
"lint:fix": "biome check --write scripts/ vitest.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"scripts/**/*.ts": [
"biome check --write"
],
"data/**/*.yaml": [
"prettier --write"
]
},
"keywords": [
"audio",
"plugins",
"vst",
"au",
"daw",
"music-production",
"catalog"
],
"author": "Jeffrey Louden <jeff@aureo.audio>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.5.9",
"@changesets/cli": "3.0.1",
"@types/better-sqlite3": "9.6.0",
"@types/node": "26.2.0",
"better-sqlite3": "13.0.3",
"husky": "9.1.7",
"lint-staged": "17.3.0",
"marked": "18.0.10",
"nanoid": "6.0.1",
"prettier": "3.9.6",
"tsx": "4.23.12",
"typescript": "7.0.2",
"vitest": "4.1.11",
"yaml": "2.9.0",
"zod": "4.4.3"
},
"packageManager": "pnpm@11.21.0+sha512.521705bce689924eac72f5a3587122f362689ef6571e55ba80076fd637c11132ecffada26fad4ea79c485bfddbfd3d5a2a5b05805a77e893de71ec8a6cca3bb1"
}