-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.06 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "portable-agent-layer",
"version": "0.70.0",
"description": "PAL — Portable Agent Layer: persistent personal context for AI coding assistants",
"type": "module",
"bin": {
"pal": "src/cli/index.ts"
},
"files": [
"src/",
"assets/",
".husky/install.mjs",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.4.0"
},
"keywords": [
"ai",
"claude",
"opencode",
"personal-ai",
"context",
"memory",
"telos",
"agent",
"portable"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kovrichard/portable-agent-layer.git"
},
"scripts": {
"type-check": "tsc --noEmit",
"test": "bun test --randomize",
"test:mutate": "stryker run",
"test:mutate:diff": "bun .agents/scripts/mutate-diff.ts",
"format": "biome format",
"format-write": "biome format --write",
"lint": "biome lint",
"lint-write": "biome lint --write",
"check": "biome check",
"check-write": "bun .agents/scripts/check-write.ts",
"knip": "knip-bun",
"klint": "klint",
"jscpd": "jscpd --noTips",
"madge": "madge --circular --extensions ts --ts-config tsconfig.json src",
"lf": "bun .agents/scripts/check-lf.ts",
"lf:fix": "bun .agents/scripts/check-lf.ts --fix",
"secretlint": "secretlint \"**/*\"",
"lint-staged": "lint-staged",
"prepare": "bun .husky/install.mjs",
"build:skill-tools": "bun run scripts/build-skill-tools.ts",
"prepack": "bun run build:skill-tools",
"install:all": "bun run src/cli/index.ts cli install",
"uninstall": "bun run src/cli/index.ts cli uninstall",
"tool:synthesize": "bun run src/tools/agent/synthesize.ts",
"tool:thread": "bun run src/tools/agent/thread.ts",
"tool:wisdom-frame": "bun run src/tools/agent/wisdom-frame.ts",
"tool:reflect": "bun run src/tools/relationship-reflect.ts",
"eval:sentiment": "bun eval/run.ts sentiment",
"eval:failure-principle": "bun eval/run.ts failure-principle"
},
"lint-staged": {
"*.ts": [
"bun run check"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@hughescr/stryker-bun-runner": "1.3.8",
"@konvert7/klint": "0.34.0",
"@opencode-ai/plugin": "latest",
"@secretlint/secretlint-rule-preset-recommend": "13.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@stryker-mutator/core": "9.6.1",
"@types/adm-zip": "^0.5.8",
"@types/bun": "latest",
"@types/node": "latest",
"husky": "^9.1.7",
"jscpd": "^4.2.3",
"knip": "^6.14.1",
"lint-staged": "17.0.5",
"madge": "8.0.0",
"promptfoo": "0.121.14",
"secretlint": "13.0.2",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"adm-zip": "^0.5.17",
"fast-myers-diff": "^3.2.0",
"marked": "18.0.4",
"pdf-lib": "1.17.1",
"playwright": "^1.60.0",
"unpdf": "^0.12.0"
}
}