@alanwchat/coder 0.1.0 → 0.1.105

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/bin.cjs +3 -0
  2. package/package.json +9 -8
package/bin.cjs ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+ require('./dist/index.cjs');
package/package.json CHANGED
@@ -1,25 +1,26 @@
1
1
  {
2
2
  "name": "@alanwchat/coder",
3
- "version": "0.1.0",
3
+ "version": "0.1.105",
4
4
  "description": "Coder CLI — AI-powered coding assistant in the terminal",
5
5
  "type": "module",
6
- "bin": {
7
- "coder": "./dist/index.cjs"
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/leyen-me/coder.git"
8
9
  },
10
+ "bin": "./bin.cjs",
9
11
  "files": [
10
- "dist"
12
+ "dist",
13
+ "bin.cjs"
11
14
  ],
12
15
  "scripts": {
13
16
  "build": "node build.mjs",
14
17
  "dev": "node --import tsx src/index.ts",
15
- "typecheck": "tsc --noEmit",
16
- "prepublishOnly": "node build.mjs"
18
+ "typecheck": "tsc --noEmit"
17
19
  },
18
20
  "engines": {
19
21
  "node": ">=18.0.0"
20
22
  },
21
- "dependencies": {
22
- },
23
+ "dependencies": {},
23
24
  "devDependencies": {
24
25
  "esbuild": "^0.24.0",
25
26
  "tsx": "^4.19.0",