-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "@foundryprotocol/0gkit-attestation",
"version": "1.5.0",
"description": "Neutral 0G TEE attestation — parse, sign, recover, verify, report. Pure crypto on @foundryprotocol/0gkit-core + viem.",
"license": "MIT",
"homepage": "https://0gkit.com",
"repository": {
"type": "git",
"url": "https://github.com/rajkaria/0gkit.git",
"directory": "packages/0gkit-attestation"
},
"bugs": {
"url": "https://github.com/rajkaria/0gkit/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "depcruise src --config ../../.dependency-cruiser.cjs",
"clean": "rimraf dist"
},
"dependencies": {
"@foundryprotocol/0gkit-core": "workspace:*",
"viem": "^2.21.0"
},
"peerDependencies": {
"viem": "^2.21.0"
},
"devDependencies": {
"@foundryprotocol/0gkit-testing": "workspace:*",
"@foundryprotocol/0gkit-wallet": "workspace:*",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"dependency-cruiser": "^16.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"keywords": [
"0g",
"tee",
"attestation",
"eip191",
"toolkit"
],
"publishConfig": {
"access": "public"
}
}