codebyplan 0.0.1 → 1.1.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/README.md +51 -11
- package/dist/cli.js +2830 -0
- package/package.json +42 -7
- package/index.js +0 -17
package/package.json
CHANGED
|
@@ -1,26 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codebyplan",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "CLI for CodeByPlan — AI-powered development planning and tracking",
|
|
5
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"codebyplan": "
|
|
7
|
+
"codebyplan": "dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"
|
|
10
|
+
"dist/cli.js",
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"build:npm": "node esbuild.npm.mjs",
|
|
16
|
+
"prepublishOnly": "npm run build:npm",
|
|
17
|
+
"lint": "eslint",
|
|
18
|
+
"lint:fix": "eslint --fix",
|
|
19
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
20
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"test:coverage": "vitest run --coverage"
|
|
16
24
|
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"codebyplan",
|
|
27
|
+
"cli",
|
|
28
|
+
"development-planning",
|
|
29
|
+
"ai-tools",
|
|
30
|
+
"claude-code"
|
|
31
|
+
],
|
|
17
32
|
"homepage": "https://codebyplan.com",
|
|
18
33
|
"repository": {
|
|
19
34
|
"type": "git",
|
|
20
35
|
"url": "https://github.com/codebyplan/codebyplan.git",
|
|
21
36
|
"directory": "packages/codebyplan"
|
|
22
37
|
},
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"registry": "https://registry.npmjs.org/"
|
|
42
|
+
},
|
|
23
43
|
"engines": {
|
|
24
44
|
"node": ">=18"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/js": "^9.18.0",
|
|
48
|
+
"@types/node": "^20",
|
|
49
|
+
"@vitest/eslint-plugin": "^1.1.44",
|
|
50
|
+
"esbuild": "^0.25",
|
|
51
|
+
"eslint": "^9.18.0",
|
|
52
|
+
"eslint-config-prettier": "^10.0.1",
|
|
53
|
+
"eslint-plugin-no-secrets": "^2.2.1",
|
|
54
|
+
"eslint-plugin-prettier": "^5.2.2",
|
|
55
|
+
"eslint-plugin-security": "^3.0.1",
|
|
56
|
+
"globals": "^17.0.0",
|
|
57
|
+
"typescript": "^5",
|
|
58
|
+
"typescript-eslint": "^8.20.0",
|
|
59
|
+
"vitest": "^4.0.18"
|
|
25
60
|
}
|
|
26
61
|
}
|
package/index.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
console.log(`
|
|
4
|
-
CodeByPlan CLI
|
|
5
|
-
==============
|
|
6
|
-
|
|
7
|
-
This package is a placeholder. The full CLI is coming soon.
|
|
8
|
-
|
|
9
|
-
In the meantime, use the current CLI package:
|
|
10
|
-
|
|
11
|
-
npm install -g @codebyplan/cli
|
|
12
|
-
npx @codebyplan/cli --help
|
|
13
|
-
|
|
14
|
-
Learn more at https://codebyplan.com
|
|
15
|
-
`);
|
|
16
|
-
|
|
17
|
-
process.exit(0);
|