-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"name": "@i-stack/ai-coding-kit",
"version": "3.0.0",
"type": "module",
"description": "One kit for all AI coding tools — Agent Skills management, MCP configuration sync, and iOS engineering rules",
"homepage": "https://github.com/i-stack/ai-coding-kit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/i-stack/ai-coding-kit.git"
},
"license": "MIT",
"author": "i-stack",
"bin": {
"ai-coding-kit": "./skills-engineering/scripts/sync-skills.sh",
"ai-coding-kit-sync": "./sync.sh",
"ai-coding-kit-list-skills": "./skills-engineering/scripts/list-skills.sh",
"ai-coding-kit-install-hooks": "./install-hooks.sh"
},
"files": [
"skills-engineering/",
"sync/",
"env/",
"hooks/",
".githooks/",
"sync.sh",
"install-hooks.sh",
"README.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"ai-coding",
"agent-skills",
"mcp",
"model-context-protocol",
"ios",
"swift",
"claude-code",
"codex",
"cursor",
"gemini",
"codebuddy",
"skill-engineering"
],
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"vitepress": "^1.0.0"
},
"engines": {
"node": ">=18"
}
}