@ccpluginizer/ccpluginizer 0.2.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/bin/ccpluginizer +2 -0
- package/dist/index.js +1925 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ccpluginizer/ccpluginizer",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "CLI for pluginizing non-plugin Claude Code repos",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ccpluginizer": "./bin/ccpluginizer"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"files": [
|
|
12
|
+
"bin",
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"typecheck": "tsc --noEmit",
|
|
17
|
+
"lint": "eslint . --max-warnings 0",
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"build": "bun build src/index.ts --outdir dist --target bun --format esm",
|
|
20
|
+
"dev": "bun run src/index.ts",
|
|
21
|
+
"prepublishOnly": "bun run build"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"bun": ">=1.0.0"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public",
|
|
28
|
+
"registry": "https://registry.npmjs.org/"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@crustjs/core": "^0.0.16",
|
|
32
|
+
"@crustjs/plugins": "^0.0.22",
|
|
33
|
+
"@crustjs/progress": "^0.0.3",
|
|
34
|
+
"@crustjs/prompts": "^0.0.13",
|
|
35
|
+
"@crustjs/store": "^0.0.4",
|
|
36
|
+
"@crustjs/style": "^0.1.0",
|
|
37
|
+
"valibot": "^1.3.1"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@crustjs/crust": "^0.0.23",
|
|
41
|
+
"@eslint/js": "^10.0.1",
|
|
42
|
+
"@types/bun": "^1.3.13",
|
|
43
|
+
"eslint": "^10.3.0",
|
|
44
|
+
"jiti": "^2.6.1",
|
|
45
|
+
"typescript": "^6.0.3",
|
|
46
|
+
"typescript-eslint": "^8.59.1"
|
|
47
|
+
}
|
|
48
|
+
}
|