-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.69 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.69 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@agentlang/cli",
"version": "0.12.8",
"description": "A command-line interface tool for Agentlang",
"main": "out/main.js",
"type": "module",
"bin": {
"agent": "./bin/cli.js"
},
"files": [
"out/",
"bin/",
".pnpmrc",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b tsconfig.src.json && node esbuild.mjs",
"start": "tsx src/main.ts",
"dev": "tsx src/main.ts",
"prepublishOnly": "npm run build",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint:check && npm run format:check"
},
"keywords": [
"agentlang",
"cli",
"agent",
"programming-language",
"api-generation",
"openapi",
"swagger",
"documentation"
],
"author": "Agentlang Team",
"license": "Sustainable Use License",
"repository": {
"type": "git",
"url": "https://github.com/agentlang/agentlang-cli.git"
},
"bugs": {
"url": "https://github.com/agentlang/agentlang-cli/issues"
},
"homepage": "https://github.com/agentlang/agentlang-cli#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@agentlang/agentgen": "^0.0.5",
"@agentlang/lstudio": "^0.6.0",
"@anthropic-ai/claude-agent-sdk": "^0.2.20",
"@anthropic-ai/sdk": "^0.71.2",
"@asteasolutions/zod-to-openapi": "8.4.0",
"@redocly/cli": "^2.15.0",
"agentlang": "^0.10.9",
"better-sqlite3": "^12.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.2",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"express": "^5.2.1",
"fs-extra": "^11.3.3",
"ink": "^6.8.0",
"langium": "^4.1.3",
"mammoth": "^1.11.0",
"multer": "^2.0.2",
"open": "^11.0.0",
"openai": "^6.16.0",
"openapi-client-axios": "^7.8.0",
"openapi-to-postmanv2": "^5.8.0",
"ora": "^9.1.0",
"pdf-parse": "^2.4.5",
"react": "^19.2.4",
"simple-git": "^3.30.0",
"sqlite-vec": "0.1.7-alpha.2",
"tmp": "^0.2.5",
"uuid": "^13.0.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"@types/multer": "^2.0.0",
"@types/node": "^25.0.10",
"@types/openapi-to-postmanv2": "^5.0.0",
"@types/react": "^19.2.14",
"@types/tmp": "^0.2.6",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.54.0"
},
"packageManager": "pnpm@10.28.2"
}