archctx 0.0.0 → 0.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/package.json CHANGED
@@ -1,34 +1,27 @@
1
1
  {
2
2
  "name": "archctx",
3
- "version": "0.0.0",
4
- "description": "Reserved package name for the ArchContext command-line interface.",
3
+ "version": "0.1.0",
4
+ "description": "Local architecture context CLI for agentic coding workflows.",
5
+ "private": false,
5
6
  "type": "module",
6
7
  "bin": {
7
- "archctx": "bin/archctx.js"
8
+ "archctx": "./bin/archctx.mjs"
8
9
  },
10
+ "packageManager": "bun@1.3.10",
9
11
  "files": [
10
- "bin/",
12
+ "bin",
11
13
  "README.md"
12
14
  ],
13
- "repository": {
14
- "type": "git",
15
- "url": "git+https://github.com/Ancienttwo/arch-context.git"
16
- },
17
- "homepage": "https://github.com/Ancienttwo/arch-context#readme",
18
- "bugs": {
19
- "url": "https://github.com/Ancienttwo/arch-context/issues"
20
- },
21
- "keywords": [
22
- "architecture",
23
- "agentic-coding",
24
- "cli"
25
- ],
26
- "author": "",
15
+ "homepage": "https://archcontext.repoharness.com",
27
16
  "license": "UNLICENSED",
28
17
  "publishConfig": {
29
18
  "registry": "https://registry.npmjs.org/"
30
19
  },
31
20
  "engines": {
32
- "node": ">=18"
21
+ "node": ">=24 <26",
22
+ "bun": ">=1.3.10"
23
+ },
24
+ "dependencies": {
25
+ "@colbymchenry/codegraph": "1.0.1"
33
26
  }
34
27
  }
package/bin/archctx.js DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- console.error(
4
- "archctx is reserved for the ArchContext CLI. The first product release is not published yet."
5
- );
6
- process.exitCode = 1;