-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 861 Bytes
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
{
"private": true,
"name": "exe-agent",
"description": "Telegram agent on exe.dev powered by flue",
"version": "0.2.0",
"type": "module",
"dependencies": {
"@earendil-works/pi-ai": "0.83.0",
"@flue/runtime": "2.0.3",
"grammy": "1.45.1",
"hono": "4.13.0",
"tslog": "5.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@flue/cli": "2.0.3",
"@flue/vite": "2.0.3",
"@tsconfig/node26": "26.0.0",
"@types/node": "26.1.2",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"vite": "8.2.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "node --env-file-if-exists=.env dist/server.mjs",
"check": "tsgo -p .",
"lint": "biome ci .",
"lint:fix": "biome check --fix .",
"test": "node --experimental-test-module-mocks --test test/*.test.ts"
}
}