-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "@spherity/trusted-hint-controller",
"version": "1.1.1",
"description": "A controller library for handling ERC-7506 compliant Trusted Hints",
"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",
"test:integration": "vitest --config vitest-integration.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spherity/trusted-hint-controller.git"
},
"keywords": ["erc-7506", "trusted-hint", "decentralized-identity", "did"],
"author": "Philipp Bolte",
"license": "MIT",
"bugs": {
"url": "https://github.com/spherity/trusted-hint-controller/issues"
},
"homepage": "https://github.com/spherity/trusted-hint-controller#readme",
"devDependencies": {
"pkgroll": "^2.0.1",
"typescript": "^5.3.2",
"vitest": "^1.2.0"
},
"dependencies": {
"@spherity/trusted-hint-registry": "^1.0.3",
"@viem/anvil": "^0.0.7",
"viem": "^2.7.15"
}
}