-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.53 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
{
"name": "@getpipher/armory-mesh",
"version": "0.1.3",
"description": "Hardened peer-to-peer mesh for pi agents \u2014 live presence, work claims, cross-session duplicate checks, and a durable fleet memory for N parallel sessions. Signed + secured by default.",
"keywords": [
"pi-package",
"pi-extension",
"peer-to-peer",
"mesh",
"cross-session",
"fleet",
"comms",
"awareness",
"bug-bounty"
],
"license": "MIT",
"type": "module",
"author": "RECTOR (https://github.com/rz1989s)",
"homepage": "https://github.com/getpipher/armory-mesh",
"repository": {
"type": "git",
"url": "git+https://github.com/getpipher/armory-mesh.git"
},
"bugs": {
"url": "https://github.com/getpipher/armory-mesh/issues"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.ts"
}
},
"files": [
"extensions",
"src",
"docs",
"README.md",
"LICENSE",
"DESIGN.md",
"ROADMAP.md",
"SECURITY.md"
],
"pi": {
"extensions": [
"./extensions"
]
},
"scripts": {
"test": "npm run test:smoke && npm run test:smoke2 && npm run test:smoke2-widget && npm run test:smoke3 && npm run test:smoke4 && npm run test:smoke5 && npm run test:smoke6 && npm run test:smoke6_5 && npm run test:smoke7 && npm run test:smoke8 && npm run test:smoke-doctor && npm run test:smoke-reconnect",
"test:smoke": "jiti scripts/smoke-phase1.ts",
"test:smoke2": "jiti scripts/smoke-phase2.ts",
"test:smoke2-widget": "jiti scripts/smoke-phase2-widget.ts",
"test:smoke3": "jiti scripts/smoke-phase3.ts",
"test:smoke4": "jiti scripts/smoke-phase4.ts",
"build": "echo \"no build step (TypeScript source loaded directly by pi)\" && exit 0",
"test:smoke5": "jiti scripts/smoke-phase5.ts",
"test:smoke6": "jiti scripts/smoke-phase6.ts",
"test:smoke6_5": "jiti scripts/smoke-phase6_5.ts",
"test:smoke7": "jiti scripts/smoke-phase7.ts",
"test:smoke8": "jiti scripts/smoke-phase8.ts",
"test:smoke-doctor": "jiti scripts/smoke-doctor.ts",
"test:smoke-reconnect": "jiti scripts/smoke-reconnect.ts"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.0",
"jiti": "^2.7.0"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@sinclair/typebox": {
"optional": true
}
}
}