-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.61 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
{
"name": "sentinel-plan-manager",
"version": "1.0.1",
"description": "Sentinel dVPN plan manager — Express dashboard + CLI with RPC-first queries and LCD fallback",
"type": "module",
"bin": {
"plans": "./cli.js"
},
"scripts": {
"start": "node server.js",
"cli": "node cli.js",
"demo": "node scripts/demo.mjs",
"doctor": "node scripts/doctor.mjs",
"build:vendor": "node scripts/bundle-vendor.mjs",
"postinstall": "node scripts/bundle-vendor.mjs",
"test:e2e": "node scripts/test-e2e.mjs",
"test:universal": "node scripts/universal-test.mjs",
"test:cli-e2e": "node scripts/cli-e2e.mjs"
},
"files": [
"cli.js",
"server.js",
"index.html",
"lib/",
"start.bat",
"plans.cmd",
".env.example",
"README.md",
"PLANS.md",
"MANIFESTO.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sentinel-Bluebuilder/sentinel-plan-manager.git"
},
"keywords": [
"sentinel",
"dvpn",
"cosmos",
"plan-manager",
"feegrant",
"rpc"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@cosmjs/encoding": "^0.38.1",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.38.1",
"@privy-io/js-sdk-core": "^0.61.1",
"@privy-io/server-auth": "^1.32.5",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"blue-js-sdk": "^2.7.2",
"dotenv": "^17.4.2",
"express": "^4.18.2",
"qrcode": "^1.5.4"
},
"overrides": {
"protobufjs": "^7.5.5",
"elliptic": "^6.6.1"
},
"devDependencies": {
"esbuild": "^0.28.0"
}
}