-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@avoidwork/madz",
"version": "1.7.3",
"description": "A personality-driven AI harness channeling Mads Mikkelsen's cinematic soul.",
"keywords": [
"cli",
"ai",
"engine",
"assistant",
"harness",
"orchestrator",
"orchestrator-engine"
],
"homepage": "https://denkerne.ai",
"bugs": {
"url": "https://github.com/avoidwork/madz/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avoidwork/madz.git"
},
"engines": {
"node": ">=24"
},
"license": "BSD-3-Clause",
"files": [
"index.js",
"src/",
"config.yaml",
"memory/",
"skills/",
"prompts/",
"README.md",
"LICENSE"
],
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"type": "module",
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "node index.js --mode interactive",
"test": "node --test tests/**/*.test.js",
"coverage": "node --test --experimental-test-coverage --test-coverage-exclude=dist/** --test-coverage-exclude=tests/** --test-reporter=spec tests/**/*.test.js 2>&1 | grep -A 1000 \"start of coverage report\" > coverage.txt",
"fix": "oxlint --fix *.js src tests/unit && oxfmt *.js src tests/unit --write",
"lint": "oxlint *.js src tests/unit && oxfmt *.js src/*.js tests/unit/*.js --check",
"docker:build": "docker build -t madz:latest .",
"docker:tag": "docker tag madz:latest $DOCKER_USER/madz:$npm_package_version",
"docker:push": "docker push $DOCKER_USER/madz:$npm_package_version",
"docker:release": "npm run docker:build && npm run docker:tag && npm run docker:push && docker tag madz:latest $DOCKER_USER/madz:latest && npm run docker:push",
"docker:release:all": "docker buildx build --builder multiarch --platform linux/amd64,linux/arm64 -t $DOCKER_USER/madz:$npm_package_version -t $DOCKER_USER/madz:latest --push .",
"docker:release:amd64": "docker buildx build --builder multiarch --platform linux/amd64 -t $DOCKER_USER/madz:$npm_package_version-amd64 -t $DOCKER_USER/madz:$npm_package_version -t $DOCKER_USER/madz:latest-amd64 --push .",
"docker:release:arm64": "docker buildx build --builder multiarch --platform linux/arm64 -t $DOCKER_USER/madz:$npm_package_version-arm64 -t $DOCKER_USER/madz:$npm_package_version -t $DOCKER_USER/madz:latest-arm64 --push .",
"docker:compose:up": "docker compose up -d",
"docker:compose:down": "docker compose down",
"purge-branches": "git branch | grep -v \"main\" | xargs git branch -D",
"changelog": "auto-changelog -p"
},
"devDependencies": {
"auto-changelog": "^2.6.0",
"husky": "^9.1.7",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0"
},
"dependencies": {
"@langchain/langgraph": "^1.3.7",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.2",
"@langchain/openai": "^1.4.7",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-node": "^0.218.0",
"cron-parser": "^5.5.0",
"ink": "^7.0.5",
"ink-scroll-view": "^0.3.7",
"js-yaml": "^4.2.0",
"marked": "^9.1.6",
"marked-terminal": "^7.3.0",
"pino": "^10.3.1",
"posix": "^4.2.0",
"tiktoken": "^1.0.22",
"zod": "^4.1.8"
}
}