@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/README.md +3 -1
- package/dist/assets/installer.cjs +1 -0
- package/dist/cli.cjs +1 -1
- package/package.json +43 -40
package/package.json
CHANGED
|
@@ -1,42 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
}
|