-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.48 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.48 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
85
86
87
88
89
90
91
92
93
{
"name": "gridstamp",
"version": "1.1.2",
"description": "Cryptographic dispute evidence for autonomous fleets. Tamper-evident spatial receipts for AV insurance, logistics proof-of-delivery, and AR anti-cheat. 91% spoof detection in stress tests at fleet scale.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gridstamp-mcp": "dist/mcp/server.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./perception": {
"import": "./dist/perception/index.js",
"types": "./dist/perception/index.d.ts"
},
"./memory": {
"import": "./dist/memory/index.js",
"types": "./dist/memory/index.d.ts"
},
"./navigation": {
"import": "./dist/navigation/index.js",
"types": "./dist/navigation/index.d.ts"
},
"./verification": {
"import": "./dist/verification/index.js",
"types": "./dist/verification/index.d.ts"
},
"./antispoofing": {
"import": "./dist/antispoofing/index.js",
"types": "./dist/antispoofing/index.d.ts"
},
"./gamification": {
"import": "./dist/gamification/index.js",
"types": "./dist/gamification/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:bench": "vitest run --config vitest.bench.config.ts",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"gridstamp",
"dispute-evidence",
"spatial-proof",
"proof-of-presence",
"proof-of-delivery",
"av-insurance",
"robotics-insurance",
"fleet-telematics",
"gps-spoofing",
"anti-cheat",
"logistics-visibility",
"autonomous-fleets",
"cryptographic-receipts",
"merkle-evidence"
],
"author": "Jerry Omiagbo <omiagbogold@icloud.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mnemopay/gridstamp"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0"
},
"dependencies": {
"@mnemopay/sdk": "^1.0.0",
"merkletreejs": "^0.4.0",
"sharp": "^0.33.0",
"ssim.js": "^3.5.0"
}
}