@kurokeita/add-skill 0.0.1 → 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.
Files changed (2) hide show
  1. package/dist/bin/skills.js +0 -0
  2. package/package.json +59 -42
File without changes
package/package.json CHANGED
@@ -1,43 +1,60 @@
1
1
  {
2
- "name": "@kurokeita/add-skill",
3
- "version": "0.0.1",
4
- "description": "CLI to install AI agent skills to various platforms",
5
- "type": "module",
6
- "bin": {
7
- "add-skill": "./dist/bin/skills.js"
8
- },
9
- "main": "dist/bin/skills.js",
10
- "files": [
11
- "dist"
12
- ],
13
- "keywords": [
14
- "ai",
15
- "skills",
16
- "agent",
17
- "cli"
18
- ],
19
- "author": "Kuro Keita",
20
- "license": "MIT",
21
- "dependencies": {
22
- "@clack/prompts": "^0.11.0",
23
- "commander": "^14.0.2",
24
- "fs-extra": "^11.3.3",
25
- "picocolors": "^1.1.1"
26
- },
27
- "devDependencies": {
28
- "@biomejs/biome": "^2.3.11",
29
- "@types/fs-extra": "^11.0.4",
30
- "@types/node": "^25.0.9",
31
- "markdownlint-cli": "^0.47.0",
32
- "tsx": "^4.21.0",
33
- "typescript": "^5.9.3"
34
- },
35
- "scripts": {
36
- "dev": "tsx bin/skills.ts",
37
- "build": "tsc && tsx scripts/copy-assets.ts",
38
- "lint": "pnpm run lint:ts && pnpm run lint:md",
39
- "lint:ts": "biome check .",
40
- "lint:md": "markdownlint '**/*.md' --ignore node_modules",
41
- "format": "biome check --write ."
42
- }
43
- }
2
+ "name": "@kurokeita/add-skill",
3
+ "version": "1.0.0",
4
+ "description": "CLI to install AI agent skills to various platforms",
5
+ "type": "module",
6
+ "bin": {
7
+ "add-skill": "./dist/bin/skills.js"
8
+ },
9
+ "main": "dist/bin/skills.js",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "dev": "tsx bin/skills.ts",
15
+ "build": "tsc && tsx scripts/copy-assets.ts",
16
+ "prepublishOnly": "pnpm run build",
17
+ "lint": "pnpm run lint:ts && pnpm run lint:md",
18
+ "lint:ts": "biome check .",
19
+ "lint:md": "markdownlint '**/*.md' --ignore node_modules",
20
+ "format": "biome check --write .",
21
+ "release": "semantic-release"
22
+ },
23
+ "keywords": [
24
+ "ai",
25
+ "skills",
26
+ "agent",
27
+ "cli"
28
+ ],
29
+ "author": "Kuro Keita",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/kurokeita/ai-agent.git"
33
+ },
34
+ "license": "MIT",
35
+ "packageManager": "pnpm@10.28.0",
36
+ "dependencies": {
37
+ "@clack/prompts": "^0.11.0",
38
+ "commander": "^14.0.2",
39
+ "fs-extra": "^11.3.3",
40
+ "picocolors": "^1.1.1"
41
+ },
42
+ "devDependencies": {
43
+ "@biomejs/biome": "^2.3.11",
44
+ "@semantic-release/git": "^10.0.1",
45
+ "@types/fs-extra": "^11.0.4",
46
+ "@types/node": "^25.0.9",
47
+ "markdownlint-cli": "^0.47.0",
48
+ "semantic-release": "^25.0.2",
49
+ "tsx": "^4.21.0",
50
+ "typescript": "^5.9.3"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "pnpm": {
56
+ "overrides": {
57
+ "undici": "^6.23.0"
58
+ }
59
+ }
60
+ }