-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.14 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.14 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ensemble",
"version": "1.0.7",
"description": "Central manager for MCP servers, skills, and plugins across AI clients",
"workspaces": [
"packages/*"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ensemble": "./dist/cli/index.js",
"ens": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./operations": {
"types": "./dist/operations.d.ts",
"import": "./dist/operations.js"
},
"./schemas": {
"types": "./dist/schemas.d.ts",
"import": "./dist/schemas.js"
},
"./clients": {
"types": "./dist/clients.d.ts",
"import": "./dist/clients.js"
},
"./registry": {
"types": "./dist/registry.d.ts",
"import": "./dist/registry.js"
},
"./sync": {
"types": "./dist/sync.d.ts",
"import": "./dist/sync.js"
},
"./search": {
"types": "./dist/search.d.ts",
"import": "./dist/search.js"
},
"./doctor": {
"types": "./dist/doctor.d.ts",
"import": "./dist/doctor.js"
},
"./skills": {
"types": "./dist/skills.d.ts",
"import": "./dist/skills.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"format": "biome format --write src/ tests/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"ai",
"claude",
"cursor",
"config-management",
"plugins",
"skills"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^13.0.0",
"proper-lockfile": "^4.1.2",
"smol-toml": "^1.3.0",
"zod": "^3.24.0"
},
"optionalDependencies": {
"better-sqlite3": "^11.7.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/proper-lockfile": "^4.1.4",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.8"
}
}