-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.74 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
{
"name": "@tdsoft-tech/aikit",
"version": "0.1.35",
"description": "Open-source AI coding agent toolkit for OpenCode - skills, agents, commands, tools, and plugins",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aikit": "./dist/cli.js",
"aikit-mcp": "./dist/mcp-server.js"
},
"files": [
"dist/",
"templates/",
"CHANGELOG.md",
"README.md",
".githooks/"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "node scripts/postinstall.js"
},
"keywords": [
"opencode",
"ai",
"coding",
"agent",
"skills",
"cli",
"beads"
],
"author": "TDSoft / AIKit",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@tdsoft-tech/aikit": "^0.1.2",
"@types/diff": "^7.0.2",
"aikit": "^0.0.1",
"better-sqlite3": "^12.5.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"diff": "^8.0.2",
"fast-xml-parser": "^4.3.2",
"figma-developer-mcp": "^0.6.4",
"find-process": "^2.0.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.12",
"js-yaml": "^4.1.0",
"open": "^10.1.0",
"semver": "^7.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@types/semver": "^7.5.0",
"eslint": "^8.55.0",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}