-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.88 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
{
"name": "input-your-project-name",
"version": "1.0.0",
"description": "TypeScript 项目模板",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"index":"npx tsx build/syncPrompts.ts && npx tsx src/index.ts",
"dev": "npx tsx build/syncPrompts.ts && npx tsx watch src/server.ts",
"agent": "npx tsx build/syncPrompts.ts && npx tsx src/modules/agent/role/planner.ts",
"build": "npx tsx build/syncPrompts.ts && tsc && npx tsc-alias",
"prebuild": "npx tsx build/syncPrompts.ts",
"sync-prompts": "npx tsx build/syncPrompts.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"mcp": "npx tsx src/modules/mcp/mcpServer.ts"
},
"keywords": [
"typescript",
"template"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@ai-sdk/google": "^3.0.43",
"@ai-sdk/google-vertex": "^4.0.104",
"@ai-sdk/openai": "^3.0.48",
"@devicefarmer/adbkit": "^3.3.8",
"@google/genai": "^1.45.0",
"ai": "^6.0.116",
"axios": "^1.13.6",
"chalk": "^4.1.2",
"dotenv": "^17.3.1",
"fast-xml-parser": "^5.5.6",
"https-proxy-agent": "^7.0.6",
"inquirer": "^8.2.7",
"mysql": "^2.18.1",
"ora": "^5.4.1",
"sharp": "^0.34.5",
"tesseract.js": "^7.0.0",
"undici": "^7.24.4",
"undici-types": "^7.24.4",
"zod": "^3.23.8",
"@modelcontextprotocol/sdk": "^1.0.3"
},
"devDependencies": {
"@types/inquirer": "^8.2.12",
"@types/jest": "^29.0.0",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
}
}