-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (41 loc) · 1.01 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
{
"name": "@spherity/trusted-hint-registry",
"version": "1.0.3",
"description": "A registry for trusted hints base on ERC-7506",
"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"
}
},
"engines": {
"node": "^20.9.0",
"npm": "^10.1.0"
},
"scripts": {
"build": "pkgroll --src ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spherity/trusted-hint-registry.git"
},
"author": "Philipp Bolte (Spherity)",
"license": "ISC",
"bugs": {
"url": "https://github.com/spherity/trusted-hint-registry/issues"
},
"homepage": "https://github.com/spherity/trusted-hint-registry#readme",
"devDependencies": {
"pkgroll": "^2.0.1",
"typescript": "^5.2.2"
}
}