-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.89 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": "@open-audio-stack/core",
"version": "0.1.50",
"description": "Open-source audio plugin management software",
"type": "module",
"main": "./build/index.js",
"exports": {
"browser": "./build/index-browser.js",
"node": "./build/index.js",
"default": "./build/index.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",
"dev": "tsx ./src/index.ts",
"format": "prettier . --write",
"lint": "eslint .",
"start": "node build/index.js",
"test": "vitest run ./tests --hook-timeout=60000 --test-timeout=60000 --no-file-parallelism",
"test:watch": "vitest ./tests"
},
"author": "kmturley",
"license": "cc0-1.0",
"keywords": [
"open",
"audio",
"stack",
"plugin",
"package",
"manager"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/7zip-min": "^1.3.3",
"@types/adm-zip": "^0.5.5",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.7.8",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.12.0",
"globals": "^15.2.0",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@vscode/sudo-prompt": "^9.3.1",
"7zip-min": "^1.4.5",
"adm-zip": "^0.5.16",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"inquirer": "^12.4.1",
"js-yaml": "^4.1.0",
"mime-types": "^3.0.2",
"semver": "^7.6.3",
"slugify": "^1.6.6",
"tar": "^7.4.3",
"zod": "^3.25.49"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-audio-stack/open-audio-stack-core.git"
}
}