@iaforged/context-code 1.0.35

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.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ import { homedir } from 'os'
3
+ import { join } from 'path'
4
+
5
+ if (!process.env.CLAUDE_CONFIG_DIR) {
6
+ process.env.CLAUDE_CONFIG_DIR = join(homedir(), '.context')
7
+ }
8
+
9
+ await import('./cli.js')
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@iaforged/context-code",
3
+ "version": "1.0.35",
4
+ "bin": {
5
+ "context": "context-bootstrap.js"
6
+ },
7
+ "engines": {
8
+ "node": ">=18.0.0"
9
+ },
10
+ "type": "module",
11
+ "author": "IAForged AI",
12
+ "license": "SEE LICENSE IN LICENSE.md",
13
+ "description": "Context Code is an agentic coding tool for the terminal. It can understand your codebase, edit files, run terminal commands, and help with complete development workflows.",
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "files": [
18
+ "cli.js",
19
+ "context-bootstrap.js",
20
+ "vendor/audio-capture/",
21
+ "vendor/ripgrep/",
22
+ "README.md",
23
+ "LICENSE.md",
24
+ "package.json",
25
+ "sdk-tools.d.ts"
26
+ ],
27
+ "scripts": {
28
+ "prepare": "node -e \"if (!process.env.AUTHORIZED) { console.error('ERROR: Direct publishing is not allowed.\\nPlease see the release workflow documentation to publish this package.'); process.exit(1); }\"",
29
+ "publish:package": "powershell -ExecutionPolicy Bypass -File ./publish-package.ps1"
30
+ },
31
+ "dependencies": {},
32
+ "optionalDependencies": {
33
+ "@img/sharp-darwin-arm64": "^0.34.2",
34
+ "@img/sharp-darwin-x64": "^0.34.2",
35
+ "@img/sharp-linux-arm": "^0.34.2",
36
+ "@img/sharp-linux-arm64": "^0.34.2",
37
+ "@img/sharp-linux-x64": "^0.34.2",
38
+ "@img/sharp-linuxmusl-arm64": "^0.34.2",
39
+ "@img/sharp-linuxmusl-x64": "^0.34.2",
40
+ "@img/sharp-win32-arm64": "^0.34.2",
41
+ "@img/sharp-win32-x64": "^0.34.2"
42
+ }
43
+ }