@supercode-sh/codex-install 0.0.1 → 1.0.4

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,42 +1,45 @@
1
1
  {
2
- "name": "@supercode-sh/codex-install",
3
- "version": "0.0.1",
4
- "description": "Installer bootstrap for Supercode extensions in Codex Desktop on macOS.",
5
- "type": "module",
6
- "bin": {
7
- "codex-install": "./dist/cli.cjs"
8
- },
9
- "files": [
10
- "dist/",
11
- "README.md"
12
- ],
13
- "scripts": {
14
- "build": "node scripts/build.cjs",
15
- "check": "node --check bin/cli.mjs && node --check src/index.mjs && node --check scripts/build.cjs && node --check scripts/verify-dist.cjs",
16
- "test": "node --test test/index.test.mjs",
17
- "verify:dist": "node scripts/verify-dist.cjs",
18
- "prepack": "npm run check && npm test && npm run build && npm run verify:dist"
19
- },
20
- "engines": {
21
- "node": ">=22"
22
- },
23
- "os": [
24
- "darwin"
25
- ],
26
- "publishConfig": {
27
- "access": "public",
28
- "registry": "https://registry.npmjs.org/"
29
- },
30
- "author": "Supercode",
31
- "keywords": [
32
- "codex",
33
- "electron",
34
- "installer",
35
- "supercode"
36
- ],
37
- "license": "UNLICENSED",
38
- "devDependencies": {
39
- "esbuild": "0.25.1",
40
- "javascript-obfuscator": "4.1.1"
41
- }
2
+ "name": "@supercode-sh/codex-install",
3
+ "version": "1.0.4",
4
+ "description": "External CLI that injects the Supercode Extension installer into Codex Desktop on macOS.",
5
+ "type": "module",
6
+ "bin": {
7
+ "codex-install": "./dist/cli.cjs"
8
+ },
9
+ "files": [
10
+ "dist/",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "prebuild": "npm --prefix ../installer run build:production",
15
+ "build": "node scripts/build.cjs",
16
+ "check:build": "node --check bin/cli.mjs && node --check scripts/build.cjs",
17
+ "verify:dist": "node scripts/build.cjs --verify-only",
18
+ "prepack": "npm --prefix .. run check && npm --prefix .. test && npm --prefix .. run build && npm run verify:dist"
19
+ },
20
+ "engines": {
21
+ "node": ">=18"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "registry": "https://registry.npmjs.org/"
26
+ },
27
+ "author": "Supercode",
28
+ "keywords": [
29
+ "codex",
30
+ "electron",
31
+ "installer",
32
+ "supercode"
33
+ ],
34
+ "license": "UNLICENSED",
35
+ "devDependencies": {
36
+ "@types/jest": "29.5.14",
37
+ "@types/node": "24.13.3",
38
+ "jest": "29.7.0",
39
+ "oxfmt": "0.48.0",
40
+ "oxlint": "1.68.0",
41
+ "oxlint-tsgolint": "0.22.1",
42
+ "ts-jest": "29.4.6",
43
+ "typescript": "5.8.2"
44
+ }
42
45
  }