-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "moicle",
"version": "1.3.1",
"description": "Reusable AI agents, commands, skills, and architecture references for Claude Code",
"type": "module",
"main": "dist/index.js",
"bin": {
"moicle": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "echo \"No tests yet\" && exit 0",
"prepublishOnly": "bun run build",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"pack:dist": "rm -rf release && mkdir -p release/moicle && cp -r bin dist assets package.json README.md release/moicle/ && cd release && zip -r moicle.zip moicle && echo 'Created release/moicle.zip'"
},
"keywords": [
"claude",
"claude-code",
"ai",
"agents",
"cli",
"developer-tools",
"automation"
],
"author": "phuthuycoding",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/phuthuycoding/moicle.git"
},
"homepage": "https://github.com/phuthuycoding/moicle#readme",
"bugs": {
"url": "https://github.com/phuthuycoding/moicle/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"dist/",
"assets/"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^9.2.12",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"typescript": "^5.3.3"
}
}