This repository was archived by the owner on Apr 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "@nimblebrain/mpak",
"version": "0.1.0",
"description": "CLI for downloading MCPB bundles from the mpak registry",
"main": "dist/index.js",
"type": "module",
"bin": {
"mpak": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"generate:types": "openapi-typescript http://localhost:3200/documentation/json -o src/lib/api/schema.d.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"test": "vitest --run src",
"test:unit": "vitest --run src",
"test:integration": "vitest --run test/integration",
"test:all": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck": "tsc -p tsconfig.check.json"
},
"keywords": [
"mcp",
"mcpb",
"anthropic",
"cli",
"package-manager"
],
"author": "NimbleBrain Inc",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^14.0.2",
"gray-matter": "^4.0.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/node": "^25.0.3",
"@vitest/ui": "^4.0.16",
"openapi-typescript": "^7.10.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}