-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.22 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.22 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
{
"name": "holepunch-types",
"version": "0.2.0",
"description": "TypeScript type definitions for Holepunch ecosystem modules: autobase, blind-pairing, hyperswarm, z32, b4a, and more.",
"types": "@types/index.d.ts",
"exports": {
".": {
"types": "./@types/index.d.ts"
},
"./@types/*": "./@types/*",
"./package.json": "./package.json"
},
"files": [
"@types/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/Drache93/holepunch-types"
},
"keywords": [
"types",
"typescript",
"holepunch",
"autobase",
"hyperswarm",
"blind-pairing",
"z32",
"b4a",
"corestore"
],
"author": "Dominic Cassidy",
"license": "MIT",
"scripts": {
"test:types": "tsd",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"tsd": {
"directory": "test",
"compilerOptions": {
"strict": true,
"target": "ES2020",
"lib": [
"ES2020"
],
"types": [
"node"
],
"typeRoots": [
"./@types"
]
}
},
"devDependencies": {
"brittle": "^3.18.0",
"hypercore": "^11.13.0",
"tsd": "^0.33.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@types/node": "^24.3.0"
}
}