-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "mpak",
"version": "0.1.0",
"private": true,
"description": "Open source MCP bundle registry and package manager",
"author": "NimbleBrain Inc <engineering@mpak.dev>",
"repository": {
"type": "git",
"url": "https://github.com/NimbleBrainInc/mpak.git"
},
"homepage": "https://mpak.dev",
"bugs": {
"url": "https://github.com/NimbleBrainInc/mpak/issues"
},
"keywords": [
"mpak",
"mcp",
"mcpb",
"model-context-protocol",
"package-manager",
"agent-skills",
"registry"
],
"license": "Apache-2.0",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
}
}