-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.63 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.63 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
72
{
"name": "@agi_inc/cli",
"version": "0.5.16",
"description": "Terminal-based agent interaction for AGI desktop automation",
"main": "./dist/index.js",
"bin": {
"agi": "./bin/agi"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"screenshots": "node scripts/generate-screenshots.mjs"
},
"keywords": [
"agi",
"cli",
"terminal",
"ai",
"agent",
"automation",
"desktop"
],
"author": "AGI Inc <sdk@agi.tech>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agi-inc/agi-cli.git"
},
"bugs": {
"url": "https://github.com/agi-inc/agi-cli/issues"
},
"homepage": "https://docs.agi.tech",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.4.0"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"dependencies": {
"@agi_inc/agi-js": "^0.5.1",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"open": "^11.0.0",
"react": "^18.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.0",
"puppeteer": "^24.37.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}