-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.86 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "kosmos-aos",
"version": "0.3.0",
"description": "Local-first observability and debugging for AI agents",
"license": "MIT",
"homepage": "https://www.getkosmos.xyz",
"repository": {
"type": "git",
"url": "git+https://github.com/chasefort/kosmosaos.git"
},
"bugs": {
"url": "https://github.com/chasefort/kosmosaos/issues"
},
"keywords": [
"ai-agents",
"agent-observability",
"agent-runtime",
"observability",
"tracing",
"prompt-engineering",
"developer-tools",
"local-first"
],
"engines": {
"node": ">=18"
},
"main": "out/main/index.js",
"bin": {
"kosmos-aos": "dist/server/index.js"
},
"files": [
"dist/server/",
"dist/main/",
"dist/shared/",
"out/browser/"
],
"scripts": {
"dev": "env -u ELECTRON_RUN_AS_NODE electron-vite dev",
"build": "env -u ELECTRON_RUN_AS_NODE electron-vite build",
"preview": "env -u ELECTRON_RUN_AS_NODE electron-vite preview",
"package": "env -u ELECTRON_RUN_AS_NODE electron-vite build && electron-builder",
"ci": "npm test && npm run typecheck && npm run build && npm run build:npx && npm run website:build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"postinstall": "electron-rebuild -f -w node-pty || true",
"prepublishOnly": "npm run build:npx && npm run npm:check",
"build:browser": "vite build --config vite.config.browser.ts",
"build:server": "tsc -p tsconfig.server.json",
"build:npx": "npm run build:browser && npm run build:server",
"media:gifs": "node scripts/generate-live-gifs.mjs",
"media:github-gifs": "node scripts/generate-github-demo-gifs.mjs",
"public:home:export": "node scripts/export-public-home-repo.mjs",
"website:build": "npm --prefix website-v2 run build",
"pack:dry": "npm_config_cache=/tmp/kosmos-npm-cache npm pack --dry-run --json",
"npm:check": "node scripts/check-npm-package.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@types/dagre": "^0.7.54",
"@xterm/addon-fit": "^0.11.0",
"@xyflow/react": "^12.10.1",
"better-sqlite3": "^11.9.1",
"d3-force-3d": "^3.0.6",
"dagre": "^0.8.5",
"electron-updater": "^6.3.9",
"framer-motion": "^11.18.2",
"lucide-react": "^0.475.0",
"node-pty": "^1.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.13.1",
"three": "^0.172.0",
"ws": "^8.19.0",
"xterm": "^5.3.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/d3-force": "^3.0.10",
"@types/node": "^22.13.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/three": "^0.172.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^35.1.2",
"electron-builder": "^25.1.8",
"electron-vite": "^3.0.0",
"gifenc": "^1.0.3",
"jsdom": "^29.0.1",
"pngjs": "^7.0.0",
"puppeteer-core": "^24.40.0",
"typescript": "^5.7.3",
"vite": "^6.2.2",
"vitest": "^4.1.2"
},
"build": {
"appId": "com.kosmos.app",
"productName": "Kosmos",
"icon": "resources/icon.png",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "resources/icon.png",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "resources/icon.png"
},
"linux": {
"icon": "resources/icon.png"
}
},
"publishConfig": {
"access": "public"
}
}