codebyplan 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 (4) hide show
  1. package/README.md +51 -11
  2. package/dist/cli.js +2649 -0
  3. package/package.json +29 -7
  4. package/index.js +0 -17
package/package.json CHANGED
@@ -1,26 +1,48 @@
1
1
  {
2
2
  "name": "codebyplan",
3
- "version": "0.0.1",
3
+ "version": "1.0.0",
4
4
  "description": "CLI for CodeByPlan — AI-powered development planning and tracking",
5
- "license": "MIT",
5
+ "type": "module",
6
6
  "bin": {
7
- "codebyplan": "index.js"
7
+ "codebyplan": "dist/cli.js"
8
8
  },
9
9
  "files": [
10
- "index.js",
10
+ "dist/cli.js",
11
11
  "README.md"
12
12
  ],
13
- "publishConfig": {
14
- "access": "public",
15
- "registry": "https://registry.npmjs.org/"
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "build:npm": "node esbuild.npm.mjs",
16
+ "prepublishOnly": "npm run build:npm",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "test:coverage": "vitest run --coverage"
16
20
  },
21
+ "keywords": [
22
+ "codebyplan",
23
+ "cli",
24
+ "development-planning",
25
+ "ai-tools",
26
+ "claude-code"
27
+ ],
17
28
  "homepage": "https://codebyplan.com",
18
29
  "repository": {
19
30
  "type": "git",
20
31
  "url": "https://github.com/codebyplan/codebyplan.git",
21
32
  "directory": "packages/codebyplan"
22
33
  },
34
+ "license": "MIT",
35
+ "publishConfig": {
36
+ "access": "public",
37
+ "registry": "https://registry.npmjs.org/"
38
+ },
23
39
  "engines": {
24
40
  "node": ">=18"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^20",
44
+ "esbuild": "^0.25",
45
+ "typescript": "^5",
46
+ "vitest": "^4.0.18"
25
47
  }
26
48
  }
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);