-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.05 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
82
83
84
85
{
"name": "@behavioral/sh",
"version": "0.0.1",
"description": "Behavioral agent harness — a neuro-symbolic, self-improving agent built on the behavioral-programming runtime.",
"license": "ISC",
"engines": {
"bun": ">= v1.2.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plaited/behavioral.git"
},
"bugs": {
"url": "https://github.com/plaited/behavioral/issues"
},
"homepage": "https://behavioral.sh",
"keywords": [
"behavioral-programming",
"b-threads",
"agent",
"neuro-symbolic",
"self-improving",
"mcp",
"cli"
],
"bin": {
"behavioral": "./bin/behavioral.ts"
},
"type": "module",
"exports": {
"./cli": "./src/cli.ts",
"./controller": "./src/controller.ts",
"./utils": "./src/utils.ts"
},
"files": [
"./.bin/**",
"./AGENTS.md",
"./src/**"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "bun run check:biome && bun run check:types",
"check:biome": "biome check",
"check:types": "tsc --noEmit",
"check:write": "biome check --write && format-package --write",
"generate:css-schemas": "bun run scripts/css-schemas/run.ts generate",
"prepare": "git config core.hooksPath .hooks",
"test": "bun test"
},
"lint-staged": {
"*.{js,cjs,jsx,tsx,ts}": [
"bunx biome check --write"
],
"package.json": [
"format-package -w"
]
},
"dependencies": {
"ajv": "8.20.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.12",
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@modelcontextprotocol/client": "^2.0.0",
"@modelcontextprotocol/server": "^2.0.0",
"@types/bun": "^1.4.1",
"@webref/css": "^8.7.4",
"commitlint": "21.2.2",
"css-tree": "^3.2.1",
"cz-conventional-changelog": "3.3.0",
"format-package": "8.0.0",
"jq-wasm": "^3.0.0-jq-1.8.2",
"lint-staged": "17.4.1",
"typescript": "7.0.2",
"zod": "4.5.4"
}
}