-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "@open-audio-stack/registry",
"version": "0.0.3",
"description": "Audio registry with searchable list of packages containing Plugins, Presets and Projects",
"type": "module",
"main": "./build/index.js",
"exports": {
"node": "./build/index.js",
"default": "./build/index-browser.js"
},
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "npm run format && npm run lint && npm run build && npm test",
"copy": "cp -rf ./src/apps ./out && cp -rf ./src/plugins ./out && cp -rf ./src/presets ./out && cp -rf ./src/projects ./out",
"dev": "tsx ./src/index.ts",
"dev:reorder": "tsx ./src/reorder.ts",
"dev:validate": "tsx ./src/validate.ts",
"dev:validate:all": "for file in $(find src -type f -name '*.yaml'); do node ./build/validate.js $file; done",
"format": "prettier . --write",
"lint": "eslint .",
"start": "node build/index.js && npm run copy",
"test": "vitest run ./tests --hook-timeout=60000 --test-timeout=60000 --no-file-parallelism",
"test:api": "playwright test --debug",
"test:watch": "vitest ./tests"
},
"author": "kmturley",
"license": "cc0-1.0",
"keywords": [
"open",
"audio",
"stack",
"plugin",
"package",
"manager",
"registry",
"search",
"metadata"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@playwright/test": "^1.56.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.8",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.31.0",
"globals": "^15.2.0",
"playwright": "^1.56.1",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@open-audio-stack/core": "^0.1.50",
"chalk": "^5.3.0",
"js-yaml": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-audio-stack/open-audio-stack-registry.git"
}
}