dahrk-node 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.
Files changed (4) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +35 -0
  3. package/dist/main.js +3050 -0
  4. package/package.json +56 -0
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "dahrk-node",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "description": "The Dahrk edge client: install it (npm / Homebrew / curl), run `dahrk` with an enrolment token, and it becomes a self-managed node that executes Dahrk workflow stages in a git worktree.",
8
+ "keywords": [
9
+ "dahrk",
10
+ "linear",
11
+ "agent",
12
+ "workflow",
13
+ "edge",
14
+ "cli"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/dahrkai/dahrk-node.git",
19
+ "directory": "apps/edge-node"
20
+ },
21
+ "homepage": "https://dahrk.ai",
22
+ "bugs": {
23
+ "url": "https://github.com/dahrkai/dahrk-node/issues"
24
+ },
25
+ "engines": {
26
+ "node": ">=22"
27
+ },
28
+ "bin": {
29
+ "dahrk": "dist/main.js"
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "exports": "./dist/main.js",
35
+ "dependencies": {
36
+ "@anthropic-ai/claude-agent-sdk": "0.3.183",
37
+ "@dahrk/contracts": "^0.1.0",
38
+ "@openai/codex-sdk": "0.141.0",
39
+ "ws": "^8.18.0",
40
+ "zod": "^3.23.8"
41
+ },
42
+ "devDependencies": {
43
+ "tsup": "^8.3.5",
44
+ "tsx": "^4.19.0",
45
+ "@dahrk/edge": "0.1.0",
46
+ "@dahrk/executor-worktree": "0.1.0"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "typecheck": "tsc -p tsconfig.json --noEmit",
51
+ "start": "node dist/main.js",
52
+ "start:docker": "tsx src/main.ts",
53
+ "dev": "tsx src/main.ts",
54
+ "test": "node --import tsx --test test/*.test.ts"
55
+ }
56
+ }