-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "agent-forge",
"version": "0.1.0",
"private": true,
"description": "A decentralized AI agent framework for building complex, distributed systems",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.6.0"
},
"packageManager": "pnpm@8.6.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yaml,yml}\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"turbo": "^1.10.0",
"typescript": "~5.5.0"
},
"workspaces": [
"packages/*",
"apps/*",
"apps/examples/*"
],
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^4.1.2",
"critters": "^0.0.25",
"crypto-js": "^4.2.0",
"inversify": "^6.1.6",
"reflect-metadata": "0.2.2",
"uuid": "^9.0.1",
"winston-daily-rotate-file": "^4.7.1"
}
}