@iaforged/context-code 1.0.38 → 1.0.39
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 +27 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iaforged/context-code",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.39",
|
|
4
4
|
"bin": {
|
|
5
5
|
"context": "scripts/context-recovery-bin.cjs",
|
|
6
6
|
"context-recovery": "scripts/context-recovery-bin.cjs"
|
|
@@ -11,20 +11,20 @@
|
|
|
11
11
|
"type": "module",
|
|
12
12
|
"author": "Context AI",
|
|
13
13
|
"license": "SEE LICENSE IN README.md",
|
|
14
|
-
"description": "Context Code es un asistente de desarrollo para la terminal. Puede revisar tu proyecto, editar archivos, ejecutar comandos y apoyarte en tareas reales de programacion.",
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
"access": "public",
|
|
17
|
-
"registry": "https://registry.npmjs.org/"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"cli.js",
|
|
21
|
-
"context-bootstrap.js",
|
|
22
|
-
"vendor/audio-capture/",
|
|
23
|
-
"vendor/ripgrep/",
|
|
24
|
-
"README.md",
|
|
25
|
-
"LICENSE.md",
|
|
26
|
-
"package.json",
|
|
27
|
-
"sdk-tools.d.ts"
|
|
14
|
+
"description": "Context Code es un asistente de desarrollo para la terminal. Puede revisar tu proyecto, editar archivos, ejecutar comandos y apoyarte en tareas reales de programacion.",
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"registry": "https://registry.npmjs.org/"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"cli.js",
|
|
21
|
+
"context-bootstrap.js",
|
|
22
|
+
"vendor/audio-capture/",
|
|
23
|
+
"vendor/ripgrep/",
|
|
24
|
+
"README.md",
|
|
25
|
+
"LICENSE.md",
|
|
26
|
+
"package.json",
|
|
27
|
+
"sdk-tools.d.ts"
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build:recovery": "tsc -p tsconfig.recovery.json && node ./scripts/postprocess-recovery.mjs",
|
|
@@ -33,17 +33,18 @@
|
|
|
33
33
|
"dev:run": "node ./dist-recovery/src/entrypoints/cli.js",
|
|
34
34
|
"dev:version": "npm run build:recovery && node ./dist-recovery/src/entrypoints/cli.js --version",
|
|
35
35
|
"dev:help": "npm run build:recovery && node ./dist-recovery/src/entrypoints/cli.js --help",
|
|
36
|
-
"start:recovery": "node ./scripts/run-recovery.mjs",
|
|
37
|
-
"recovery": "tsc -p tsconfig.recovery.json && node ./scripts/postprocess-recovery.mjs && node ./scripts/run-recovery.mjs",
|
|
38
|
-
"package:recovery": "npm run build:recovery && node ./scripts/package-recovery.mjs",
|
|
39
|
-
"install:global": "npm install -g .",
|
|
40
|
-
"uninstall:global": "npm uninstall -g @iaforged/context-code",
|
|
41
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
42
|
-
"prepublishOnly": "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); }\"",
|
|
43
|
-
"publish:package": "powershell -ExecutionPolicy Bypass -File ./publish-package.ps1",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
36
|
+
"start:recovery": "node ./scripts/run-recovery.mjs",
|
|
37
|
+
"recovery": "tsc -p tsconfig.recovery.json && node ./scripts/postprocess-recovery.mjs && node ./scripts/run-recovery.mjs",
|
|
38
|
+
"package:recovery": "npm run build:recovery && node ./scripts/package-recovery.mjs",
|
|
39
|
+
"install:global": "npm install -g .",
|
|
40
|
+
"uninstall:global": "npm uninstall -g @iaforged/context-code",
|
|
41
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
42
|
+
"prepublishOnly": "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); }\"",
|
|
43
|
+
"publish:package": "powershell -ExecutionPolicy Bypass -File ./publish-package.ps1",
|
|
44
|
+
"pubpackages": "bash -lc 'AUTHORIZED=1 npm publish --access public --otp=b455c6a2c0780839e424efcdd494f29f39a68111a6d838fa8d5817a17b0c459d'",
|
|
45
|
+
"instalar": "bash -lc 'AUTHORIZED=1 npm install -g . --prefix \"$HOME/.context/local\" --force'",
|
|
46
|
+
"publicar": "bash -lc 'AUTHORIZED=1 npm publish'"
|
|
47
|
+
},
|
|
47
48
|
"optionalDependencies": {
|
|
48
49
|
"@img/sharp-darwin-arm64": "^0.34.2",
|
|
49
50
|
"@img/sharp-darwin-x64": "^0.34.2",
|