-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 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
{
"name": "madz",
"version": "1.0.0",
"description": "A personality-driven AI harness channeling Mads Mikkelsen's cinematic soul.",
"keywords": [
"cli",
"ai",
"engine",
"assistant",
"harness",
"orchestrator",
"orchestrator-engine"
],
"homepage": "https://github.com/avoidwork/madz#readme",
"bugs": {
"url": "https://github.com/avoidwork/madz/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avoidwork/madz.git"
},
"license": "BSD-3-Clause",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"type": "module",
"main": "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",
"prepare": "husky",
"purge-branches": "git branch | grep -v \"main\" | xargs git branch -D"
},
"devDependencies": {
"husky": "^9.1.7",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0"
},
"dependencies": {
"@langchain/langgraph": "^1.3.2",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.1",
"@langchain/openai": "^1.4.7",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-node": "^0.218.0",
"ink": "^7.0.3",
"ink-scroll-view": "^0.3.7",
"js-yaml": "^4.1.0",
"marked": "^9.1.6",
"marked-terminal": "^7.3.0",
"posix": "^4.2.0",
"zod": "^4.1.8"
}
}