-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.63 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
{
"name": "pi-wechat-assistant",
"version": "0.3.0",
"type": "module",
"description": "微信作为 pi TUI 的移动端分身 — 通过微信远程与 pi 交互",
"main": "index.ts",
"license": "MIT",
"author": "sj",
"homepage": "https://github.com/shenjiecode/pi-wechat-assistant#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shenjiecode/pi-wechat-assistant.git"
},
"bugs": {
"url": "https://github.com/shenjiecode/pi-wechat-assistant/issues"
},
"keywords": [
"pi",
"pi-package",
"pi-extension",
"wechat",
"微信",
"ilink",
"bot",
"assistant",
"agent"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"preversion": "npm run typecheck && npm test",
"prepack": "npm run typecheck"
},
"engines": {
"node": ">=20.3.0"
},
"files": [
"index.ts",
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"pi": {
"extensions": [
"./index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@mariozechner/pi-coding-agent": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@mariozechner/pi-coding-agent": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@mariozechner/pi-coding-agent": "*",
"@types/node": "^22.10.5",
"@types/qrcode-terminal": "^0.12.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"qrcode-terminal": "^0.12.0"
}
}