-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 1.84 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "carstream",
"version": "2.3.0",
"description": "Web stream CAR reader and writer.",
"main": "src/index.js",
"type": "module",
"types": "types/index.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"build": "tsc --build",
"test": "entail",
"coverage": "c8 npm test",
"lint": "standard"
},
"keywords": [
"CAR",
"stream",
"web",
"CID",
"IPLD"
],
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
},
"./api": {
"import": "./src/api.js",
"types": "./types/api.d.ts"
},
"./reader": {
"import": "./src/reader.js",
"types": "./types/reader.d.ts"
},
"./varint": {
"import": "./src/varint.js",
"types": "./types/varint.d.ts"
},
"./writer": {
"import": "./src/writer.js",
"types": "./types/writer.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"types/*"
],
"api": [
"types/api.d.ts"
],
"reader": [
"types/reader.d.ts"
],
"writer": [
"types/writer.d.ts"
],
"types/*": [
"types/*"
]
}
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.3",
"multiformats": "^13.0.1",
"uint8arraylist": "^2.4.3"
},
"devDependencies": {
"@ipld/car": "^5.1.1",
"c8": "^10.1.3",
"entail": "^2.1.1",
"lnmap": "^2.0.0",
"standard": "^17.1.0",
"typescript": "^5.1.3"
},
"standard": {
"ignore": [
"*.ts"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanshaw/carstream.git"
},
"bugs": {
"url": "https://github.com/alanshaw/carstream/issues"
},
"homepage": "https://github.com/alanshaw/carstream#readme"
}