@wolfx/pi-magic-context 0.21.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +167 -0
- package/dist/index.js +182147 -0
- package/dist/subagent-entry.js +167671 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wolfx/pi-magic-context",
|
|
3
|
+
"version": "0.21.8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Pi coding agent extension for Magic Context — cross-session memory and context management",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "ualtinok",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"pi",
|
|
11
|
+
"pi-coding-agent",
|
|
12
|
+
"extension",
|
|
13
|
+
"context",
|
|
14
|
+
"memory",
|
|
15
|
+
"magic-context",
|
|
16
|
+
"ai",
|
|
17
|
+
"llm"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/cortexkit/magic-context",
|
|
22
|
+
"directory": "packages/pi-plugin"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bun build src/index.ts src/subagent-entry.ts --outdir dist --target node --format esm --external @earendil-works/pi-coding-agent --external @earendil-works/pi-tui --external @huggingface/transformers --external better-sqlite3",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"test": "bun test",
|
|
32
|
+
"lint": "biome check src",
|
|
33
|
+
"lint:fix": "biome check --write src",
|
|
34
|
+
"format": "biome format --write src",
|
|
35
|
+
"format:check": "biome format src",
|
|
36
|
+
"clean": "rm -rf dist",
|
|
37
|
+
"prepublishOnly": "bun run build"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@huggingface/transformers": "^4.1.0",
|
|
41
|
+
"ai-tokenizer": "^1.0.6",
|
|
42
|
+
"better-sqlite3": "^12.9.0",
|
|
43
|
+
"comment-json": "^4.2.5",
|
|
44
|
+
"typebox": "^1.1.24",
|
|
45
|
+
"zod": "^4.1.8"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@biomejs/biome": "^2.4.7",
|
|
49
|
+
"@earendil-works/pi-coding-agent": "^0.74.0",
|
|
50
|
+
"@earendil-works/pi-tui": "^0.74.0",
|
|
51
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
52
|
+
"@types/node": "^22.0.0",
|
|
53
|
+
"typescript": "^5.8.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"@earendil-works/pi-coding-agent": "^0.74.0",
|
|
57
|
+
"@earendil-works/pi-tui": "^0.74.0"
|
|
58
|
+
},
|
|
59
|
+
"exports": {
|
|
60
|
+
".": {
|
|
61
|
+
"import": "./dist/index.js"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"pi": {
|
|
65
|
+
"extensions": [
|
|
66
|
+
"./dist/index.js"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
}
|