-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.84 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
{
"name": "aiworkspace",
"version": "0.1.7",
"description": "Set up and manage AI agent skills and configs for Cursor, Claude Code, Codex and more across multi-repo workspaces",
"license": "Apache-2.0",
"type": "module",
"author": {
"name": "Ahmed Tokyo",
"email": "tokyo@ahmedtokyo.com",
"url": "https://www.ahmedtokyo.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-tokyo/aiworkspace.git"
},
"bin": {
"aiworkspace": "bin/aiworkspace.mjs"
},
"files": [
"bin/",
"scripts/",
"root-config/",
".agents/README.md",
".gitignore",
"LICENSE",
"README.md",
"AGENTS.md",
"setup.md"
],
"scripts": {
"lint": "eslint .",
"test": "node --test test/*.test.mjs",
"skills:setup": "node scripts/skills/setup-skills.mjs",
"skills:add": "node scripts/skills/add-skill.mjs",
"skills:remove": "node scripts/skills/remove-skill.mjs",
"skills:list": "cd root-config && skills list",
"skills:find": "skills find",
"skills:update": "skills update && cd root-config && skills update && cd .. && node scripts/skills/setup-skills.mjs",
"skills:create": "node scripts/skills/create-skill.mjs",
"skills:check": "echo workspace: && skills check && echo root-config: && cd root-config && skills check",
"postinstall": "node scripts/postinstall.mjs",
"upgrade": "node scripts/upgrade.mjs"
},
"dependencies": {
"skills": "^1.4.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai",
"workspace",
"cursor",
"claude",
"codex",
"antigravity",
"copilot",
"vscode",
"openclaw",
"skills",
"agents",
"multi-repo",
"monorepo",
"sdd",
"spec-driven-development",
"agentic-engineering",
"ai-tools"
]
}