-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@aiswarm/conductor",
"version": "0.2.0",
"description": "Main application to run the AI Swarm. Uses bundles the web-ui, cli, and core drivers in a simple to use package.",
"keywords": [
"ai",
"swarm",
"chat",
"messaging",
"groups",
"communication",
"agent",
"gpt",
"organization"
],
"main": "@aiswatm/ui-cli",
"type": "module",
"bin": {
"conductor": "./bin"
},
"scripts": {
"start": "node -e 'import(process.cwd() + \"/node_modules/@aiswarm/ui-cli/index.js\")'",
"test": "echo '(no tests)'",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"link": "npm link ../ui-web ../api-graphql ../ui-cli ../driver-openai"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"author": "Ravi Gairola <mallox@pyxzl.net>",
"license": "MIT",
"dependencies": {
"@aiswarm/api-graphql": "^0.2.0",
"@aiswarm/driver-openai": "^0.2.0",
"@aiswarm/ui-cli": "^0.2.0",
"@aiswarm/ui-web": "^0.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"globals": "^17.0.0",
"husky": "^9.1.0",
"lint-staged": "^16.0.0",
"prettier": "^3.6.0"
}
}