-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.23 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
{
"name": "opencode-diane",
"version": "0.0.10",
"description": "OpenCode plugin: hierarchical, token-efficient memory for any git repository. Convention-free \u2014 pre-fills from git diff-structure and project files, no LLM at the core, no commit-message parsing. Optional cross-lingual semantic search; skill mining.",
"keywords": [
"opencode",
"opencode-plugin",
"memory",
"experience-reuse",
"token-saving",
"bm25",
"language-agnostic",
"agents.md"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/two-coats-guaranteed/opencode-diane.git"
},
"bugs": {
"url": "https://github.com/two-coats-guaranteed/opencode-diane/issues"
},
"homepage": "https://github.com/two-coats-guaranteed/opencode-diane#readme",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"grammars",
"README.md",
"WIKI.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint src tests",
"clean": "rm -rf dist coverage",
"prepublishOnly": "bun run clean && bun run build",
"test": "bun scripts/run-tests.mjs",
"smoke": "bun scripts/smoke.mjs",
"check:size": "bun scripts/check-size.mjs",
"test:coverage": "bun test --coverage",
"coverage:check": "bun scripts/coverage-check.mjs",
"verify:semantic": "bun scripts/verify-semantic.mjs",
"test:analyzer": "python3 tests/test_analyze_logs.py",
"test:coverage-parser": "node --test scripts/lib/coverage-parser-tests.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": ">=1.14.0",
"web-tree-sitter": "0.25.10",
"xlsx": "^0.18.5"
},
"peerDependencies": {
"@huggingface/transformers": "^4.2.0"
},
"peerDependenciesMeta": {
"@huggingface/transformers": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.0",
"eslint": "^9.39.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.59.3"
},
"engines": {
"bun": ">=1.1.0"
}
}