-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.22 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
73
74
75
76
{
"name": "@oagent/oa",
"version": "1.2.0",
"main": "./dist/index.js",
"type": "module",
"private": false,
"description": "基于 Ink + AI SDK 的终端 AI Agent 客户端,支持文件读写、代码搜索、网页搜索、Skill 扩展等工具调用",
"bin": {
"oa": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"config.example.json"
],
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 build && tsup",
"start": "tsx packages/core/src/index.tsx",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm -r typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"version:all": "bash scripts/version.sh",
"publish:all": "bash scripts/publish.sh",
"prepublishOnly": "bash scripts/pre-publish.sh",
"prepare": "husky",
"commit": "git-cz"
},
"keywords": [
"tui",
"ink",
"ai-agent",
"cli"
],
"homepage": "https://github.com/consistent-k/OpenAgent",
"repository": {
"type": "git",
"url": "https://github.com/consistent-k/OpenAgent"
},
"author": "",
"license": "ISC",
"dependencies": {
"@oagent/core": "workspace:*"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@oagent/telegram": "workspace:*",
"@oagent/weixin": "workspace:*",
"@types/node": "^25.9.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.4.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.60.1"
},
"engines": {
"node": ">=22",
"pnpm": ">=10.32.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@10.33.0"
}