Skip to content

Commit bb9c773

Browse files
committed
chore(release): 0.3.4
1 parent 75122a7 commit bb9c773

5 files changed

Lines changed: 251 additions & 251 deletions

File tree

apps/cli/package.json

Lines changed: 89 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,91 @@
11
{
2-
"name": "offworld",
3-
"version": "0.3.3",
4-
"description": "Offworld CLI - Repository reference generation for AI coding agents",
5-
"keywords": [
6-
"ai",
7-
"ai-agents",
8-
"amp",
9-
"anthropic",
10-
"claude",
11-
"claude-code",
12-
"cli",
13-
"codex",
14-
"coding-agent",
15-
"context",
16-
"cursor",
17-
"dependencies",
18-
"developer-tools",
19-
"documentation",
20-
"git",
21-
"llm",
22-
"monorepo",
23-
"offworld",
24-
"opencode",
25-
"reference",
26-
"repository",
27-
"skill",
28-
"typescript"
29-
],
30-
"homepage": "https://offworld.sh",
31-
"bugs": {
32-
"url": "https://github.com/oscabriel/offworld/issues"
33-
},
34-
"license": "MIT",
35-
"author": "Oscar Gabriel",
36-
"repository": {
37-
"type": "git",
38-
"url": "https://github.com/oscabriel/offworld.git",
39-
"directory": "apps/cli"
40-
},
41-
"bin": {
42-
"offworld": "./dist/cli.mjs",
43-
"ow": "./dist/cli.mjs"
44-
},
45-
"files": [
46-
"dist",
47-
"LICENSE",
48-
"README.md"
49-
],
50-
"type": "module",
51-
"exports": {
52-
".": {
53-
"types": "./dist/index.d.mts",
54-
"import": "./dist/index.mjs"
55-
}
56-
},
57-
"publishConfig": {
58-
"access": "public"
59-
},
60-
"scripts": {
61-
"build": "tsdown && chmod +x ./dist/cli.mjs",
62-
"dev": "tsdown --watch",
63-
"ow:dev": "bun run src/cli.ts",
64-
"typecheck": "tsc --noEmit",
65-
"test": "vitest run",
66-
"test:watch": "vitest",
67-
"prepublishOnly": "npm run build",
68-
"check": "oxlint && oxfmt --write"
69-
},
70-
"dependencies": {
71-
"@clack/prompts": "^1.0.0",
72-
"@offworld/sdk": "workspace:*",
73-
"@offworld/types": "workspace:*",
74-
"@opencode-ai/sdk": "^1.1.51",
75-
"@orpc/server": "^1.13.4",
76-
"convex": "catalog:",
77-
"open": "^11.0.0",
78-
"picocolors": "^1.1.1",
79-
"trpc-cli": "^0.12.2",
80-
"zod": "catalog:"
81-
},
82-
"devDependencies": {
83-
"@types/node": "catalog:",
84-
"tsdown": "catalog:",
85-
"typescript": "catalog:",
86-
"vitest": "catalog:"
87-
},
88-
"engines": {
89-
"node": ">=18"
90-
}
2+
"name": "offworld",
3+
"version": "0.3.4",
4+
"description": "Offworld CLI - Repository reference generation for AI coding agents",
5+
"keywords": [
6+
"ai",
7+
"ai-agents",
8+
"amp",
9+
"anthropic",
10+
"claude",
11+
"claude-code",
12+
"cli",
13+
"codex",
14+
"coding-agent",
15+
"context",
16+
"cursor",
17+
"dependencies",
18+
"developer-tools",
19+
"documentation",
20+
"git",
21+
"llm",
22+
"monorepo",
23+
"offworld",
24+
"opencode",
25+
"reference",
26+
"repository",
27+
"skill",
28+
"typescript"
29+
],
30+
"homepage": "https://offworld.sh",
31+
"bugs": {
32+
"url": "https://github.com/oscabriel/offworld/issues"
33+
},
34+
"license": "MIT",
35+
"author": "Oscar Gabriel",
36+
"repository": {
37+
"type": "git",
38+
"url": "https://github.com/oscabriel/offworld.git",
39+
"directory": "apps/cli"
40+
},
41+
"bin": {
42+
"offworld": "./dist/cli.mjs",
43+
"ow": "./dist/cli.mjs"
44+
},
45+
"files": [
46+
"dist",
47+
"LICENSE",
48+
"README.md"
49+
],
50+
"type": "module",
51+
"exports": {
52+
".": {
53+
"types": "./dist/index.d.mts",
54+
"import": "./dist/index.mjs"
55+
}
56+
},
57+
"publishConfig": {
58+
"access": "public"
59+
},
60+
"scripts": {
61+
"build": "tsdown && chmod +x ./dist/cli.mjs",
62+
"dev": "tsdown --watch",
63+
"ow:dev": "bun run src/cli.ts",
64+
"typecheck": "tsc --noEmit",
65+
"test": "vitest run",
66+
"test:watch": "vitest",
67+
"prepublishOnly": "npm run build",
68+
"check": "oxlint && oxfmt --write"
69+
},
70+
"dependencies": {
71+
"@clack/prompts": "^1.0.0",
72+
"@offworld/sdk": "workspace:*",
73+
"@offworld/types": "workspace:*",
74+
"@opencode-ai/sdk": "^1.1.51",
75+
"@orpc/server": "^1.13.4",
76+
"convex": "catalog:",
77+
"open": "^11.0.0",
78+
"picocolors": "^1.1.1",
79+
"trpc-cli": "^0.12.2",
80+
"zod": "catalog:"
81+
},
82+
"devDependencies": {
83+
"@types/node": "catalog:",
84+
"tsdown": "catalog:",
85+
"typescript": "catalog:",
86+
"vitest": "catalog:"
87+
},
88+
"engines": {
89+
"node": ">=18"
90+
}
9191
}

apps/cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import {
2929
mapSearchHandler,
3030
} from "./handlers/index.js";
3131

32-
export const version = "0.3.3";
32+
export const version = "0.3.4";
3333

3434
export const router = os.router({
3535
pull: os

packages/sdk/package.json

Lines changed: 100 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,102 @@
11
{
2-
"name": "@offworld/sdk",
3-
"version": "0.3.3",
4-
"description": "Core SDK for Offworld - clone repos, generate references, sync with offworld.sh",
5-
"keywords": [
6-
"ai",
7-
"ai-agents",
8-
"anthropic",
9-
"claude",
10-
"clone",
11-
"coding-agent",
12-
"convex",
13-
"dependencies",
14-
"git",
15-
"llm",
16-
"offworld",
17-
"opencode",
18-
"reference",
19-
"sdk",
20-
"skill",
21-
"sync"
22-
],
23-
"homepage": "https://offworld.sh",
24-
"bugs": {
25-
"url": "https://github.com/oscabriel/offworld/issues"
26-
},
27-
"license": "MIT",
28-
"author": "Oscar Gabriel",
29-
"repository": {
30-
"type": "git",
31-
"url": "https://github.com/oscabriel/offworld.git",
32-
"directory": "packages/sdk"
33-
},
34-
"files": [
35-
"dist"
36-
],
37-
"type": "module",
38-
"exports": {
39-
".": {
40-
"types": "./dist/index.d.mts",
41-
"import": "./dist/index.mjs"
42-
},
43-
"./sync": {
44-
"types": "./dist/sync/index.d.mts",
45-
"import": "./dist/sync/index.mjs"
46-
},
47-
"./ai": {
48-
"types": "./dist/ai/index.d.mts",
49-
"import": "./dist/ai/index.mjs"
50-
},
51-
"./internal": {
52-
"types": "./dist/internal.d.mts",
53-
"import": "./dist/internal.mjs"
54-
},
55-
"./convex/api": {
56-
"types": "./dist/convex/_generated/api.d.ts",
57-
"import": "./dist/convex/_generated/api.js"
58-
},
59-
"./convex/server": {
60-
"types": "./dist/convex/_generated/server.d.ts",
61-
"import": "./dist/convex/_generated/server.js"
62-
}
63-
},
64-
"publishConfig": {
65-
"access": "public"
66-
},
67-
"scripts": {
68-
"build": "tsdown && bun run ./scripts/copy-convex-generated.ts",
69-
"dev": "tsdown --watch",
70-
"typecheck": "tsc --noEmit",
71-
"test": "vitest run",
72-
"test:watch": "vitest",
73-
"test:unit": "vitest run --exclude '**/*.integration.test.ts'",
74-
"test:integration": "vitest run src/__tests__/integration/",
75-
"test:smoke": "SMOKE_TESTS=1 vitest run --testNamePattern Smoke",
76-
"prepublishOnly": "bun run build",
77-
"check": "oxlint && oxfmt --write"
78-
},
79-
"dependencies": {
80-
"@offworld/types": "workspace:*",
81-
"xdg-basedir": "^5.1.0",
82-
"zod": "catalog:"
83-
},
84-
"devDependencies": {
85-
"@types/node": "catalog:",
86-
"tsdown": "catalog:",
87-
"typescript": "catalog:",
88-
"vitest": "catalog:"
89-
},
90-
"peerDependencies": {
91-
"@opencode-ai/sdk": "^1.1.36",
92-
"convex": "catalog:"
93-
},
94-
"peerDependenciesMeta": {
95-
"@opencode-ai/sdk": {
96-
"optional": true
97-
},
98-
"convex": {
99-
"optional": true
100-
}
101-
}
2+
"name": "@offworld/sdk",
3+
"version": "0.3.4",
4+
"description": "Core SDK for Offworld - clone repos, generate references, sync with offworld.sh",
5+
"keywords": [
6+
"ai",
7+
"ai-agents",
8+
"anthropic",
9+
"claude",
10+
"clone",
11+
"coding-agent",
12+
"convex",
13+
"dependencies",
14+
"git",
15+
"llm",
16+
"offworld",
17+
"opencode",
18+
"reference",
19+
"sdk",
20+
"skill",
21+
"sync"
22+
],
23+
"homepage": "https://offworld.sh",
24+
"bugs": {
25+
"url": "https://github.com/oscabriel/offworld/issues"
26+
},
27+
"license": "MIT",
28+
"author": "Oscar Gabriel",
29+
"repository": {
30+
"type": "git",
31+
"url": "https://github.com/oscabriel/offworld.git",
32+
"directory": "packages/sdk"
33+
},
34+
"files": [
35+
"dist"
36+
],
37+
"type": "module",
38+
"exports": {
39+
".": {
40+
"types": "./dist/index.d.mts",
41+
"import": "./dist/index.mjs"
42+
},
43+
"./sync": {
44+
"types": "./dist/sync/index.d.mts",
45+
"import": "./dist/sync/index.mjs"
46+
},
47+
"./ai": {
48+
"types": "./dist/ai/index.d.mts",
49+
"import": "./dist/ai/index.mjs"
50+
},
51+
"./internal": {
52+
"types": "./dist/internal.d.mts",
53+
"import": "./dist/internal.mjs"
54+
},
55+
"./convex/api": {
56+
"types": "./dist/convex/_generated/api.d.ts",
57+
"import": "./dist/convex/_generated/api.js"
58+
},
59+
"./convex/server": {
60+
"types": "./dist/convex/_generated/server.d.ts",
61+
"import": "./dist/convex/_generated/server.js"
62+
}
63+
},
64+
"publishConfig": {
65+
"access": "public"
66+
},
67+
"scripts": {
68+
"build": "tsdown && bun run ./scripts/copy-convex-generated.ts",
69+
"dev": "tsdown --watch",
70+
"typecheck": "tsc --noEmit",
71+
"test": "vitest run",
72+
"test:watch": "vitest",
73+
"test:unit": "vitest run --exclude '**/*.integration.test.ts'",
74+
"test:integration": "vitest run src/__tests__/integration/",
75+
"test:smoke": "SMOKE_TESTS=1 vitest run --testNamePattern Smoke",
76+
"prepublishOnly": "bun run build",
77+
"check": "oxlint && oxfmt --write"
78+
},
79+
"dependencies": {
80+
"@offworld/types": "workspace:*",
81+
"xdg-basedir": "^5.1.0",
82+
"zod": "catalog:"
83+
},
84+
"devDependencies": {
85+
"@types/node": "catalog:",
86+
"tsdown": "catalog:",
87+
"typescript": "catalog:",
88+
"vitest": "catalog:"
89+
},
90+
"peerDependencies": {
91+
"@opencode-ai/sdk": "^1.1.36",
92+
"convex": "catalog:"
93+
},
94+
"peerDependenciesMeta": {
95+
"@opencode-ai/sdk": {
96+
"optional": true
97+
},
98+
"convex": {
99+
"optional": true
100+
}
101+
}
102102
}

0 commit comments

Comments
 (0)