-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "@aiswarm/ui-cli",
"version": "0.1.9",
"description": "A plugin for the AI Swarm that allows to interact with agents via command line interface.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js run",
"watch": "nodemon index.js -- run \"Starting Instructions\" -d",
"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 ../orchestrator"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"author": "Ravi Gairola <[email protected]>",
"license": "MIT",
"dependencies": {
"@aiswarm/orchestrator": "^0.1.0",
"commander": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"husky": "^9.1.0",
"lint-staged": "^16.0.0",
"prettier": "^3.6.0"
}
}