-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
101 lines (101 loc) · 2.12 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
98
99
100
101
{
"name": "carbites",
"version": "2.0.0",
"description": "Chunking for CAR files. Split a single CAR into multiple CARs.",
"main": "lib/index.js",
"types": "./types/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:types",
"build:types": "tsc --build",
"test": "npm run lint && npm run test:node",
"test:node": "ava --verbose 'test/*.spec.js'",
"coverage": "c8 npm run test",
"lint": "standard"
},
"author": "Alan Shaw",
"license": "(Apache-2.0 AND MIT)",
"dependencies": {
"@ipld/car": "^3.0.1",
"@ipld/dag-cbor": "^6.0.3",
"@ipld/dag-json": "^9.0.1",
"@ipld/dag-pb": "^2.0.2",
"multiformats": "^9.0.4"
},
"devDependencies": {
"@web-std/blob": "^2.1.0",
"ava": "^3.15.0",
"c8": "^7.7.2",
"ipld-garbage": "^4.0.1",
"standard": "^16.0.3",
"typescript": "^4.2.4"
},
"standard": {
"ignore": [
"dist"
]
},
"exports": {
".": {
"import": "./lib/index.js",
"types": "./types/index.d.ts"
},
"./rooted": {
"import": "./lib/rooted/index.js",
"types": "./types/rooted/index.d.ts"
},
"./simple": {
"import": "./lib/simple/index.js",
"types": "./types/simple/index.d.ts"
},
"./treewalk": {
"import": "./lib/treewalk/index.js",
"types": "./types/treewalk/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"types/*"
],
"simple": [
"types/simple/index.d.ts"
],
"rooted": [
"types/rooted/index.d.ts"
],
"treewalk": [
"types/treewalk/index.d.ts"
],
"types/*": [
"types/*"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nftstorage/carbites.git"
},
"bugs": {
"url": "https://github.com/nftstorage/carbites/issues"
},
"homepage": "https://github.com/nftstorage/carbites#readme",
"keywords": [
"car",
"content",
"archive",
"CID",
"IPLD",
"multiformats",
"chunk",
"chunker",
"chunking",
"split",
"splitter"
],
"files": [
"lib",
"tsconfig.json",
"types"
]
}