forked from agentlogs/agentlogs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.52 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.52 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
{
"name": "agentlogs",
"version": "0.1.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "bun --cwd packages/web dev",
"dev:docs": "docker run --rm -it -p 3333:3333 -v \"$(pwd)/docs:/app\" -w /app node:22 sh -c 'npm exec -y mintlify@latest -- dev --port 3333'",
"build": "bun --cwd packages/web build",
"start": "bun --cwd packages/web start",
"db:generate": "bun --cwd packages/web db:generate",
"db:reset": "bun --cwd packages/web db:reset",
"db:migrate": "bun --cwd packages/web db:migrate",
"db:studio": "bun --cwd packages/web db:studio",
"test:e2e": "bun run --cwd packages/e2e test",
"test:e2e:ui": "bun run --cwd packages/e2e test:ui",
"lint": "oxlint --fix --deny-warnings .",
"format": "concurrently -n fmt,lint 'oxfmt .' 'bun run lint'",
"check": "concurrently -n fmt,lint,ts 'oxfmt --check .' 'bun run lint' 'bun run --workspaces check'",
"plugin:switch-dev": "bash scripts/toggle-plugin-dev.sh",
"plugin:switch-prod": "bash scripts/toggle-plugin-dev.sh",
"plugin:status": "bash scripts/check-plugin-status.sh",
"prepare": "husky",
"agentlogs": "bun packages/cli/src/index.ts",
"release": "bun scripts/release.ts"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@typescript/native-preview": "7.0.0-dev.20260115.1",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"yaml": "^2.8.2"
},
"packageManager": "bun@1.3.0"
}