This repository was archived by the owner on Feb 26, 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
116 lines (116 loc) · 3.11 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.11 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ari",
"version": "2.2.1",
"description": "ARI - Artificial Reasoning Intelligence: Secure Multi-Agent Personal OS",
"author": {
"name": "Pryce Hedrick",
"url": "https://github.com/PryceHedrick"
},
"repository": {
"type": "git",
"url": "https://github.com/Ari-OS/ARI.git"
},
"homepage": "https://github.com/Ari-OS/ARI",
"bugs": {
"url": "https://github.com/Ari-OS/ARI/issues"
},
"keywords": [
"ai",
"multi-agent",
"personal-ai",
"autonomous-agents",
"typescript",
"local-first",
"security",
"governance"
],
"type": "module",
"main": "dist/index.js",
"bin": {
"ari": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"gateway:start": "node dist/cli/index.js gateway start",
"doctor": "node dist/cli/index.js doctor",
"audit:verify": "node dist/cli/index.js audit verify",
"dashboard:dev": "cd dashboard && npm run dev",
"dashboard:build": "cd dashboard && npm run build",
"scan:pii": "bash scripts/scan-pii.sh",
"precommit": "npm run scan:pii && npm run lint && npm run typecheck",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@fastify/static": "9.0.0",
"@google/genai": "1.40.0",
"@modelcontextprotocol/sdk": "^1.25.3",
"@notionhq/client": "^5.9.0",
"@qdrant/js-client-rest": "1.17.0",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "12.6.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "17.2.4",
"elevenlabs": "1.59.0",
"fastify": "^5.7.4",
"grammy": "1.40.0",
"imap-simple": "^5.1.0",
"langfuse": "^3.38.6",
"mailparser": "^3.9.3",
"nodemailer": "^7.0.13",
"openai": "6.19.0",
"ora": "^8.0.0",
"pino": "^8.17.0",
"piscina": "5.1.4",
"playwright": "1.58.1",
"rss-parser": "3.13.0",
"uuid": "^9.0.0",
"ws": "^8.16.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.39.2",
"@playwright/test": "1.58.1",
"@types/express": "5.0.6",
"@types/imap-simple": "^4.2.10",
"@types/mailparser": "^3.4.6",
"@types/node": "^20.19.30",
"@types/nodemailer": "^7.0.9",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "16.2.7",
"pino-pretty": "^10.3.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.54.0",
"vitest": "^2.1.9"
},
"overrides": {
"semver": "^7.5.2",
"esbuild": "^0.25.0"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"src/**/*.ts": "eslint"
}
}