@northflare/runner 0.0.30 → 0.0.31
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 +16 -17
package/package.json
CHANGED
|
@@ -1,32 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@northflare/runner",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"description": "Distributed conversation runner for Northflare",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"bin": "./bin/northflare-runner",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "tsc",
|
|
12
|
-
"start": "node dist/index.js",
|
|
13
|
-
"dev": "tsx src/index.ts",
|
|
14
|
-
"test": "vitest run",
|
|
15
|
-
"test:watch": "vitest watch",
|
|
16
|
-
"test:coverage": "vitest run --coverage",
|
|
17
|
-
"lint": "eslint src",
|
|
18
|
-
"prepublishOnly": "npm run build",
|
|
19
|
-
"postbuild": "chmod +x bin/northflare-runner",
|
|
20
|
-
"release": "pnpm publish --access public --no-git-checks",
|
|
21
|
-
"release:env": "source .env && pnpm publish --access public --no-git-checks"
|
|
22
|
-
},
|
|
23
10
|
"dependencies": {
|
|
24
11
|
"@ai-sdk/groq": "^3.0.0-beta.42",
|
|
25
12
|
"@anthropic-ai/claude-agent-sdk": "0.2.45",
|
|
26
13
|
"@botanicastudios/claude-code-sdk-ts": "0.2.22-fork",
|
|
27
14
|
"@botanicastudios/mcp-host-rpc": "^0.4.0",
|
|
28
|
-
"@northflare/agent": "workspace:*",
|
|
29
|
-
"@northflare/codex-sdk": "workspace:*",
|
|
30
15
|
"@openai/codex-sdk": "^0.103.0",
|
|
31
16
|
"@openrouter/ai-sdk-provider": "^2.2.3",
|
|
32
17
|
"@tanstack/react-query": "^5.x.x",
|
|
@@ -41,7 +26,9 @@
|
|
|
41
26
|
"jsonwebtoken": "^9.0.2",
|
|
42
27
|
"simple-git": "^3.x.x",
|
|
43
28
|
"winston": "^3.x.x",
|
|
44
|
-
"zod": "^4.0.0"
|
|
29
|
+
"zod": "^4.0.0",
|
|
30
|
+
"@northflare/agent": "0.1.3",
|
|
31
|
+
"@northflare/codex-sdk": "0.1.0"
|
|
45
32
|
},
|
|
46
33
|
"devDependencies": {
|
|
47
34
|
"@types/eventsource": "^1.1.15",
|
|
@@ -55,5 +42,17 @@
|
|
|
55
42
|
},
|
|
56
43
|
"engines": {
|
|
57
44
|
"node": ">=18.0.0"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsc",
|
|
48
|
+
"start": "node dist/index.js",
|
|
49
|
+
"dev": "tsx src/index.ts",
|
|
50
|
+
"test": "vitest run",
|
|
51
|
+
"test:watch": "vitest watch",
|
|
52
|
+
"test:coverage": "vitest run --coverage",
|
|
53
|
+
"lint": "eslint src",
|
|
54
|
+
"postbuild": "chmod +x bin/northflare-runner",
|
|
55
|
+
"release": "pnpm publish --access public --no-git-checks",
|
|
56
|
+
"release:env": "source .env && pnpm publish --access public --no-git-checks"
|
|
58
57
|
}
|
|
59
58
|
}
|