-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"name": "ashlr-plugin",
"version": "1.36.2",
"description": "Multi-host AI coding efficiency layer for Codex and Claude Code, powered by @ashlr/core-efficiency.",
"license": "MIT",
"type": "module",
"bin": {
"ashlr": "./scripts/cli.ts",
"ashlr-mcp": "./scripts/ashlr-mcp.ts"
},
"files": [
".agents/plugins/marketplace.json",
".claude-plugin/",
".codex/agents/",
".codex-plugin/",
".mcp.json",
"agents/",
"bench/",
"commands/",
"docs/",
"hooks/",
"ports/",
"scripts/",
"servers/",
"skills/"
],
"scripts": {
"server": "bun run servers/_router.ts",
"check": "bun run smoke:tools && bun run typecheck && bun run mdx-lint && bun run test && cd server && bun run check && cd ../site && bun run check && cd ../vscode && bun run check",
"smoke:tools": "bun run scripts/smoke-tools.ts",
"bench": "bun run scripts/run-benchmark.ts",
"test": "bun run scripts/run-root-tests.ts",
"typecheck": "bunx tsc --noEmit",
"mdx-lint": "bun run scripts/mdx-angle-bracket-lint.ts",
"brief-eval": "bun run scripts/brief-eval.ts",
"publish:github": "bash scripts/publish.sh",
"install-onnx-model": "bun run scripts/install-onnx-model.ts",
"version:bump": "bun run scripts/bump-version.ts",
"version:check": "bun run scripts/check-version-sync.ts"
},
"dependencies": {
"@ashlr/core-efficiency": "github:ashlrai/ashlr-core-efficiency#v0.3.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"minimatch": "^10.2.5",
"postgres": "^3.4.9",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "0.22.6"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.0"
},
"optionalDependencies": {
"onnxruntime-node": "^1.20.0"
}
}