-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.19 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
{
"name": "pi-qmd-ledger",
"version": "0.5.5",
"description": "Universal configurable JSONL ledger with qmd hybrid search, tiered HITL, and dynamic context injection.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"skills",
"templates",
"examples",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"keywords": [
"pi-package",
"pi-extension",
"ledger",
"jsonl",
"qmd",
"search",
"knowledge-base",
"agent-tools",
"hitl",
"semantic-search"
],
"author": "Kyle Brodeur",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kylebrodeur/pi-qmd-ledger.git"
},
"bugs": {
"url": "https://github.com/kylebrodeur/pi-qmd-ledger/issues"
},
"homepage": "https://github.com/kylebrodeur/pi-qmd-ledger#readme",
"engines": {
"node": ">=20.6.0"
},
"pi": {
"extensions": [
"./dist/index.js"
],
"skills": [
"./skills"
]
},
"scripts": {
"prepare": "husky",
"build": "tsc",
"test": "node --test dist/test/index.test.js",
"lint": "eslint .",
"prettier": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.75.0 <1.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@earendil-works/pi-coding-agent": "^0.78.1",
"@earendil-works/pi-tui": "^0.75.0",
"@types/node": "^20.0.0",
"@types/prettier": "^3.0.0",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"typebox": "^1.1.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.59.0"
},
"pnpm": {
"overrides": {
"fast-xml-parser": ">=5.7.0"
}
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}