@shapeshift-labs/frontier-swarm-codex 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 ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@shapeshift-labs/frontier-swarm-codex",
3
+ "version": "0.1.0",
4
+ "description": "Node Codex CLI runner adapter for Frontier swarm plans.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "sideEffects": false,
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+ssh://git@github.com/siliconjungle/-shapeshift-labs-frontier-swarm-codex.git"
11
+ },
12
+ "homepage": "https://github.com/siliconjungle/-shapeshift-labs-frontier-swarm-codex#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/siliconjungle/-shapeshift-labs-frontier-swarm-codex/issues"
15
+ },
16
+ "main": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "bin": {
19
+ "frontier-swarm-codex": "./dist/cli.js"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js",
25
+ "default": "./dist/index.js"
26
+ },
27
+ "./cli": {
28
+ "types": "./dist/cli.d.ts",
29
+ "import": "./dist/cli.js",
30
+ "default": "./dist/cli.js"
31
+ },
32
+ "./package.json": "./package.json"
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md",
37
+ "LICENSE",
38
+ "benchmarks/package-bench.mjs"
39
+ ],
40
+ "engines": {
41
+ "node": ">=18"
42
+ },
43
+ "scripts": {
44
+ "build": "node build.mjs",
45
+ "test": "npm run build && npm run typecheck && node test/smoke.mjs && node test/fuzz.mjs --cases 300",
46
+ "prepack": "npm run readme:packages:check && npm run test",
47
+ "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p test/tsconfig.json --noEmit",
48
+ "fuzz": "npm run build && node test/fuzz.mjs",
49
+ "bench": "npm run build && node --expose-gc benchmarks/package-bench.mjs --out benchmarks/results/frontier-swarm-codex-package-bench-latest.json",
50
+ "pack:dry": "npm pack --dry-run",
51
+ "readme:packages": "node benchmarks/package-readme-sections.mjs",
52
+ "readme:packages:check": "node benchmarks/package-readme-sections.mjs --check"
53
+ },
54
+ "keywords": [
55
+ "frontier",
56
+ "swarm",
57
+ "codex",
58
+ "agents",
59
+ "cli",
60
+ "worktree",
61
+ "evidence"
62
+ ],
63
+ "dependencies": {
64
+ "@shapeshift-labs/frontier-swarm": "0.1.0"
65
+ },
66
+ "devDependencies": {
67
+ "@types/node": "^25.9.1",
68
+ "typescript": "^6.0.3"
69
+ }
70
+ }