agkit 0.7.0 → 0.9.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 +231 -43
- package/dist/index.js +656 -170
- package/package.json +19 -4
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Scaffold and manage plugin marketplaces for Claude Code and GitHub Copilot, distributed via any Git host (GitHub, GitLab, Bitbucket, Gitea, self-hosted). Init, add plugins from built-in or remote templates, sync, validate, bump.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"author": "fair3n <fairen.dev@gmail.com>",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Fairen/agkit.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/Fairen/agkit#readme",
|
|
12
|
+
"bugs": "https://github.com/Fairen/agkit/issues",
|
|
6
13
|
"type": "module",
|
|
7
14
|
"bin": {
|
|
8
15
|
"agkit": "./dist/index.js"
|
|
@@ -10,15 +17,21 @@
|
|
|
10
17
|
"files": [
|
|
11
18
|
"dist",
|
|
12
19
|
"templates",
|
|
13
|
-
"README.md"
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
14
22
|
],
|
|
15
23
|
"engines": {
|
|
16
|
-
"node": ">=
|
|
24
|
+
"node": ">=22.0.0"
|
|
17
25
|
},
|
|
18
26
|
"scripts": {
|
|
19
27
|
"build": "tsup",
|
|
20
28
|
"dev": "tsup --watch",
|
|
21
29
|
"typecheck": "tsc --noEmit",
|
|
30
|
+
"lint": "biome check",
|
|
31
|
+
"lint:fix": "biome check --write",
|
|
32
|
+
"format": "biome format --write",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"test:watch": "vitest",
|
|
22
35
|
"prepublishOnly": "npm run build"
|
|
23
36
|
},
|
|
24
37
|
"keywords": [
|
|
@@ -39,8 +52,10 @@
|
|
|
39
52
|
"picocolors": "^1.1.0"
|
|
40
53
|
},
|
|
41
54
|
"devDependencies": {
|
|
55
|
+
"@biomejs/biome": "^2.5.2",
|
|
42
56
|
"@types/node": "^22.0.0",
|
|
43
57
|
"tsup": "^8.0.0",
|
|
44
|
-
"typescript": "^5.6.0"
|
|
58
|
+
"typescript": "^5.6.0",
|
|
59
|
+
"vitest": "^4.1.9"
|
|
45
60
|
}
|
|
46
61
|
}
|