-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.87 KB
/
package.json
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": "studiorack-registry",
"version": "2.0.0",
"description": "Audio plugin registry with searchable plugin list, metadata and download urls",
"type": "module",
"main": "./build/main.js",
"exports": "./build/main.js",
"types": "./build/main.d.ts",
"files": [
"build"
],
"scripts": {
"copy": "mkdir ./out && cp -rf ./src/plugins ./out",
"start": "node ./build/main.js",
"clean": "rimraf coverage build tmp out",
"prebuild": "npm run lint",
"build": "npm run clean && tsc -p tsconfig.json && npm run copy",
"dev": "tsx ./src/main.ts",
"dev:validate": "tsx ./src/validate.ts src/plugins/airwindows/airwindows/1.0.0.yaml",
"build:release": "npm run clean && tsc -p tsconfig.release.json && npm run copy",
"lint": "eslint .",
"test": "vitest run ./tests",
"format": "prettier . --write",
"test:watch": "vitest ./tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studiorack/studiorack-registry.git"
},
"keywords": [
"audio",
"plugin",
"registry",
"search",
"metadata",
"vst",
"vst3",
"download"
],
"author": "kmturley",
"license": "MIT",
"bugs": {
"url": "https://github.com/studiorack/studiorack-registry/issues"
},
"homepage": "https://github.com/studiorack/studiorack-registry#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@studiorack/core": "^2.0.12",
"chalk": "^5.3.0",
"graphql-request": "^6.1.0",
"js-yaml": "^4.1.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/js-yaml": "^4.0.9",
"@types/node-fetch": "^2.6.11",
"@types/semver": "^7.5.8",
"eslint": "^9.12.0",
"globals": "^15.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0",
"tsx": "^4.10.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vitest": "^1.6.0"
}
}