@rovecode-labs/sdk 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,51 @@
1
+ {
2
+ "name": "@rovecode-labs/sdk",
3
+ "version": "0.1.0",
4
+ "license": "AGPL-3.0-only",
5
+ "author": "9Code Labs",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/9Code-Labs/rovecode-community.git",
9
+ "directory": "packages/sdk"
10
+ },
11
+ "homepage": "https://github.com/9Code-Labs/rovecode-community#readme",
12
+ "description": "Embed the rovecode coding-agent harness in your own Bun/TypeScript process: sessions, streamed prompts, background subagent tasks, and the live agent tree — one client, one engine.",
13
+ "type": "module",
14
+ "main": "./dist/index.js",
15
+ "module": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.js"
21
+ },
22
+ "./package.json": "./package.json"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "README.md"
27
+ ],
28
+ "engines": {
29
+ "bun": ">=1.3.14"
30
+ },
31
+ "scripts": {
32
+ "build": "bun build --target=bun --minify --packages=external ../../src/sdk/index.ts --outfile dist/index.js && bun -e \"require('node:fs').copyFileSync('index.d.ts', 'dist/index.d.ts')\"",
33
+ "prepack": "bun run build",
34
+ "smoke": "bun test ./smoke.test.ts"
35
+ },
36
+ "dependencies": {
37
+ "@ast-grep/napi": "^0.45.3",
38
+ "@modelcontextprotocol/sdk": "^1.30.0",
39
+ "tokenlens": "^1.3.1"
40
+ },
41
+ "keywords": [
42
+ "rovecode",
43
+ "coding-agent",
44
+ "agent",
45
+ "sdk",
46
+ "llm",
47
+ "harness",
48
+ "subagents",
49
+ "workflows"
50
+ ]
51
+ }