-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "pluro-cli",
"version": "0.2.5",
"description": "Local-first shared context CLI for agentic tools",
"main": "dist/index.js",
"bin": {
"pluro": "dist/cli/index.js",
"pluro-cli": "dist/tui/index.js",
"pluro-tui": "dist/tui/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli/index.ts",
"dev:tui": "tsx src/tui/index.tsx",
"start": "node dist/cli/index.js",
"start:tui": "node dist/tui/index.js",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test \"dist/tests/*.test.js\"",
"verify:mcp": "npm run build && node scripts/mcp-conformance-check.cjs",
"verify:ci": "npm run typecheck && npm test && npm run verify:mcp && npm run verify:package",
"verify:release-tag": "node scripts/verify-release-tag.cjs",
"verify:package": "node scripts/verify-package.cjs",
"release:check": "npm run verify:ci && npm run verify:release-tag"
},
"keywords": [
"cli",
"context",
"agent",
"mcp"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"files": [
"dist/**/*",
"!dist/tests/**"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"ink": "^3.2.0",
"keytar": "^7.9.0",
"react": "^17.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/keytar": "^4.4.0",
"@types/node": "^25.5.2",
"@types/react": "^17.0.89",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}