-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "pi-mcp-deferred",
"version": "1.0.0",
"description": "Deferred context engine for Pi MCP — lazy-loads tool schemas on first use to save context tokens",
"keywords": [
"mcp",
"model-context-protocol",
"pi",
"pi-package",
"deferred-context",
"lazy-loading"
],
"license": "MIT",
"author": "Fork of @spences10/pi-mcp by Scott Spence",
"repository": {
"type": "git",
"url": "git+https://github.com/drvova/pi-mcp-deferred.git"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@spences10/pi-project-trust": "0.0.12",
"@spences10/pi-child-env": "0.1.8",
"@spences10/pi-context": "0.0.24",
"@spences10/pi-settings": "0.0.0",
"@spences10/pi-tui-modal": "0.0.20"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.75.4",
"@types/node": "^25.8.0",
"typescript": "^6.0.3",
"vitest": "4.1.6"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"engines": {
"node": ">=24.15.0"
},
"pi": {
"extensions": [
"./dist/index.js"
],
"image": "https://raw.githubusercontent.com/spences10/my-pi/main/assets/pi-package-preview.png"
},
"scripts": {
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
"build:self": "vp exec tsc -p tsconfig.build.json",
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
"test:self": "vp exec vitest run",
"coverage:self": "vp exec vitest run --coverage",
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
}
}