-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 KB
/
package.json
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
{
"name": "@spherity/timestamp",
"version": "1.2.0",
"description": "A library to create timestamps with merkle trees and the ERC-7506 trusted hint registry",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"index.ts",
"/dist"
],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll",
"test": "vitest --config vitest-unit.config.ts run",
"test:integration": "vitest --config vitest-integration.config.ts run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spherity/timestamp.git"
},
"keywords": [
"erc-7506",
"trusted-hint",
"timestamp",
"merkle-tree"
],
"author": "Philipp Bolte (Spherity)",
"license": "ISC",
"bugs": {
"url": "https://github.com/spherity/timestamp/issues"
},
"homepage": "https://github.com/spherity/timestamp#readme",
"devDependencies": {
"@viem/anvil": "^0.0.10",
"@vitest/coverage-v8": "^2.0.5",
"pkgroll": "^2.4.2",
"typescript": "^5.5.4",
"viem": "^2.19.6",
"vitest": "^2.0.5"
},
"dependencies": {
"@openzeppelin/merkle-tree": "^1.0.7",
"@spherity/trusted-hint-registry": "^1.0.3",
"abitype": "^1.0.6",
"ethers": "^6.13.2",
"ethers-abitype": "^1.0.3"
}
}