claudeskill-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +552 -0
- package/bin/cs.js +187 -0
- package/dist/index.js +44985 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claudeskill-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CLI tool for bootstrapping and updating ClaudeSkill projects",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/luan-thnh/claudeskill-cli.git"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"registry": "https://registry.npmjs.org"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"cs": "bin/cs.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/cs.js",
|
|
19
|
+
"dist/index.js"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "bun run src/index.ts",
|
|
23
|
+
"build": "bun build src/index.ts --outdir dist --target node --external @octokit/rest",
|
|
24
|
+
"compile": "bun build src/index.ts --compile --outfile cs",
|
|
25
|
+
"compile:binary": "bun build src/index.ts --compile --outfile bin/cs",
|
|
26
|
+
"compile:binaries": "node scripts/build-all-binaries.js",
|
|
27
|
+
"check-version-sync": "node scripts/check-binary-version-sync.js",
|
|
28
|
+
"build:platform-binaries": "bun run scripts/build-platform-binaries.js",
|
|
29
|
+
"test": "bun test",
|
|
30
|
+
"test:watch": "bun test --watch",
|
|
31
|
+
"test:quick": "./scripts/dev-quick-start.sh test",
|
|
32
|
+
"lint": "biome check .",
|
|
33
|
+
"lint:fix": "biome check --fix .",
|
|
34
|
+
"lint:fix-unsafe": "biome check --fix --unsafe .",
|
|
35
|
+
"format": "biome format --write .",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
37
|
+
"dev:quick": "./scripts/dev-quick-start.sh",
|
|
38
|
+
"dev:all": "./scripts/dev-quick-start.sh all",
|
|
39
|
+
"metrics": "bun run scripts/workflow-metrics.ts",
|
|
40
|
+
"install:hooks": "./.githooks/install.sh"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"cli",
|
|
44
|
+
"claudeskill",
|
|
45
|
+
"boilerplate",
|
|
46
|
+
"bootstrap",
|
|
47
|
+
"template"
|
|
48
|
+
],
|
|
49
|
+
"author": "ClaudeSkill",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"engines": {
|
|
52
|
+
"bun": ">=1.3.2",
|
|
53
|
+
"node": ">=18.0.0"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@clack/prompts": "^0.7.0",
|
|
57
|
+
"@octokit/rest": "^22.0.0",
|
|
58
|
+
"cac": "^6.7.14",
|
|
59
|
+
"cli-progress": "^3.12.0",
|
|
60
|
+
"compare-versions": "^6.1.1",
|
|
61
|
+
"diff": "^8.0.2",
|
|
62
|
+
"extract-zip": "^2.0.1",
|
|
63
|
+
"fs-extra": "^11.2.0",
|
|
64
|
+
"ignore": "^5.3.2",
|
|
65
|
+
"minimatch": "^10.1.1",
|
|
66
|
+
"ora": "^8.0.0",
|
|
67
|
+
"p-limit": "^7.2.0",
|
|
68
|
+
"picocolors": "^1.1.1",
|
|
69
|
+
"proper-lockfile": "^4.1.2",
|
|
70
|
+
"semver": "^7.7.3",
|
|
71
|
+
"tar": "^7.4.3",
|
|
72
|
+
"tmp": "^0.2.3",
|
|
73
|
+
"zod": "^3.23.8"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@biomejs/biome": "^1.9.4",
|
|
77
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
78
|
+
"@semantic-release/git": "^10.0.1",
|
|
79
|
+
"@types/bun": "latest",
|
|
80
|
+
"@types/cli-progress": "^3.11.6",
|
|
81
|
+
"@types/diff": "^8.0.0",
|
|
82
|
+
"@types/fs-extra": "^11.0.4",
|
|
83
|
+
"@types/node": "^22.10.1",
|
|
84
|
+
"@types/proper-lockfile": "^4.1.4",
|
|
85
|
+
"@types/semver": "^7.7.1",
|
|
86
|
+
"@types/tar": "^6.1.13",
|
|
87
|
+
"@types/tmp": "^0.2.6",
|
|
88
|
+
"semantic-release": "^24.2.0",
|
|
89
|
+
"typescript": "^5.7.2"
|
|
90
|
+
}
|
|
91
|
+
}
|