-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.4 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.4 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
{
"name": "@safeos/core",
"version": "0.1.0",
"description": "SafeOS Guardian - Humanitarian AI Monitoring Service",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "concurrently \"npm run api\" \"npm run ui\"",
"api": "tsx watch src/api/server.ts",
"ui": "cd apps/guardian-ui && npm run dev",
"build": "tsc || true",
"build:ui": "cd apps/guardian-ui && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"ollama:check": "curl http://localhost:11434/api/tags",
"ollama:pull": "ollama pull moondream && ollama pull llava:7b"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@framers/sql-storage-adapter": "^0.4.2",
"better-sqlite3": "^11.6.0",
"bullmq": "^5.31.0",
"cors": "^2.8.5",
"express": "^4.21.1",
"howler": "^2.2.4",
"ioredis": "^5.4.2",
"node-telegram-bot-api": "^0.66.0",
"ollama": "^0.5.11",
"openai": "^4.72.0",
"sharp": "^0.33.5",
"simple-peer": "^9.11.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"swagger-ui-express": "^5.0.1",
"twilio": "^5.3.7",
"uuid": "^11.0.3",
"web-push": "^3.6.7",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/howler": "^2.2.12",
"@types/node": "^22.9.1",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/simple-peer": "^9.11.8",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^2.1.5",
"concurrently": "^9.1.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"peerDependencies": {
"zustand": "^4.5.5"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/framersai/safeos"
},
"keywords": [
"monitoring",
"ai",
"safety",
"baby-monitor",
"pet-monitor",
"elderly-care",
"humanitarian"
],
"license": "MIT",
"author": "Frame <team@frame.dev>",
"homepage": "https://safeos.sh"
}