-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.18 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
{
"name": "@sharathvc/sm-attest-viewer",
"version": "0.2.3",
"description": "Audited display surface for attested AI agent action streams — React/TypeScript renderer for the Attested Action Envelope (AAE), the trustworthy display step in human-in-the-loop verification of high-stakes autonomous decisions. Aligned with Project NANDA's Attestation pillar.",
"license": "MIT",
"author": "Sharath VC",
"homepage": "https://github.com/Sharathvc23/sm-attest-viewer",
"repository": {
"type": "git",
"url": "https://github.com/Sharathvc23/sm-attest-viewer.git"
},
"bugs": {
"url": "https://github.com/Sharathvc23/sm-attest-viewer/issues"
},
"keywords": [
"aae",
"attested-action-envelope",
"verifiable-credentials",
"vc",
"nanda",
"internet-of-agents",
"agent-attestation",
"data-integrity-proof",
"ml-dsa",
"post-quantum",
"did",
"react",
"renderer"
],
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./fixtures": {
"types": "./fixtures/index.ts",
"default": "./fixtures/index.ts"
}
},
"files": [
"src/**",
"fixtures/**",
"README.md",
"SPEC.md",
"LICENSE"
],
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"radix-ui": "^1.4.3",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.6",
"jsdom": "^29.1.1",
"typescript": "^5",
"vitest": "^4.1.6"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"pnpm": {
"overrides": {
"vite": ">=6.4.2"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"publishConfig": {
"access": "public"
}
}