-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.37 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
{
"name": "pi-knowledge-search",
"version": "1.3.4",
"type": "module",
"description": "Semantic search over local files for pi. Indexes a directory of text files, watches for changes, and exposes a knowledge_search tool to the LLM.",
"keywords": [
"pi-package",
"extension"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/samfoy/pi-knowledge-search"
},
"pi": {
"extensions": [
"./dist/index.js"
]
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"optionalDependencies": {
"@aws-sdk/client-bedrock-agent-runtime": "3.750.0",
"@aws-sdk/client-bedrock-runtime": "3.750.0",
"@aws-sdk/credential-providers": "3.750.0"
},
"dependencies": {
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"stream-json": "^2.1.0",
"tsx": "^4.21.0",
"unified": "^11.0.5"
},
"scripts": {
"test": "node --test --import tsx src/**/*.test.ts",
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --sourcemap --packages=external --external:@earendil-works/pi-coding-agent --external:@sinclair/typebox && esbuild src/sync-worker.ts --bundle --platform=node --format=esm --outfile=dist/sync-worker.mjs --packages=external --external:@earendil-works/pi-coding-agent --external:@sinclair/typebox",
"build:worker": "esbuild src/sync-worker.ts --bundle --platform=node --format=esm --outfile=dist/sync-worker.mjs --packages=external --external:@earendil-works/pi-coding-agent --external:@sinclair/typebox",
"check": "tsc --noEmit",
"dev": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --sourcemap --watch --packages=external --external:@earendil-works/pi-coding-agent --external:@sinclair/typebox",
"prepare": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
}
}