-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.55 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
{
"name": "@oriro/orirocli",
"version": "0.6.1",
"description": "ORIRO — a free, on-device-friendly terminal AI agent. Built on the Pi agent harness (used as a library).",
"type": "module",
"bin": {
"oriro": "./dist/cli.js",
"orirocli": "./dist/cli.js"
},
"engines": {
"node": ">=22"
},
"files": [
"dist/cli.js",
"skills/",
"README.md",
"ATTRIBUTION.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test:unit": "tsx scripts/test-tool-sanitize.ts && tsx scripts/test-guardian.ts && tsx scripts/test-scribe.ts && tsx scripts/test-race.ts && tsx scripts/test-weights.ts && tsx scripts/test-output.ts && tsx scripts/test-connectors.ts && tsx scripts/test-artifacts.ts && tsx scripts/test-project-md.ts && tsx scripts/test-compact.ts && tsx scripts/test-init.ts && tsx scripts/test-sessions.ts && tsx scripts/test-permission.ts && tsx scripts/test-plan-mode.ts && tsx scripts/test-agents-fanout.ts && tsx scripts/test-serve.ts && tsx scripts/test-imagine.ts && tsx scripts/test-prove.ts && tsx scripts/test-capability-tour.ts && tsx scripts/test-select-state.ts && tsx scripts/test-ornith.ts && tsx scripts/test-wizard.ts && tsx scripts/test-gateway.ts && tsx scripts/test-gateway-service.ts",
"smoke": "npm run build && node scripts/smoke.mjs",
"prepublishOnly": "npm run build && npm run test:unit && node scripts/smoke.mjs && node scripts/prepublish-check.mjs",
"start": "node dist/cli.js"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.1.0",
"@earendil-works/pi-agent-core": "0.79.10",
"@earendil-works/pi-ai": "0.79.10",
"@earendil-works/pi-coding-agent": "0.79.10",
"@earendil-works/pi-tui": "0.79.10",
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^12.1.0",
"grammy": "^1.44.0",
"jmespath": "^0.16.0",
"typebox": "^1.1.38",
"zod": "^4.4.3"
},
"peerDependencies": {
"@huggingface/transformers": "*",
"playwright": "*",
"discord.js": "^14"
},
"peerDependenciesMeta": {
"@huggingface/transformers": {
"optional": true
},
"playwright": {
"optional": true
},
"discord.js": {
"optional": true
}
},
"devDependencies": {
"@types/jmespath": "^0.15.2",
"@types/node": "^22",
"discord.js": "^14.26.4",
"tsup": "^8",
"tsx": "^4",
"typescript": "^5"
},
"optionalDependencies": {
"@whiskeysockets/baileys": "^7.0.0-rc13",
"node-llama-cpp": "^3.0.0",
"qrcode-terminal": "^0.12.0"
}
}