-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.95 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
{
"name": "agentx",
"version": "0.0.1",
"description": "AgentX - Define, Run, Scale AI Agents",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "bun dev/dev-manager.ts",
"start": "echo 'No default start script'",
"build": "PATH=$(echo \"$PATH\" | tr ':' '\\n' | grep -v bun-node | paste -sd: -) turbo build",
"check": "biome check .",
"check:fix": "biome check --write .",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:bdd": "bun test bdd/",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "lefthook install || true",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"author": "Deepractice",
"license": "MIT",
"packageManager": "bun@1.3.5",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@biomejs/biome": "^2.4.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^24.9.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"bun-dts": "0.1.70",
"bun-types": "1.3.5",
"concurrently": "^9.1.0",
"dotenv": "17.2.3",
"lefthook": "^1.13.6",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.1",
"postcss-import": "16.1.1",
"string-width": "4.2.3",
"tailwindcss": "^3.4.17",
"tsup": "8.5.1",
"turbo": "^2.5.8",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"vite": "7.3.1",
"wait-on": "^8.0.4",
"ws": "^8.18.0",
"@deepracticex/bdd": "^0.3.0"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.3.0"
},
"dependencies": {
"ajv": "8.17.1"
}
}