-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "cartonne",
"version": "3.0.1",
"description": "Reading and writing Content Addressable aRchive",
"scripts": {
"build": "rm -rf ./dist && ./node_modules/.bin/tsc -p ./tsconfig.build.json",
"test": "./node_modules/.bin/tsm ./node_modules/uvu/bin.js . .+\\.test\\.ts",
"test:watch": "./node_modules/.bin/watchlist --eager src -- pnpm run test",
"prepublishOnly": "pnpm run build"
},
"type": "module",
"keywords": [
"car",
"ipld",
"ipfs",
"multiformats"
],
"author": "Sergey Ukustov <[email protected]>",
"license": "(Apache-2.0 AND MIT)",
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/cartonne.git"
},
"files": [
"dist/"
],
"sideEffects": false,
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"devDependencies": {
"@ipld/dag-json": "^10.1.6",
"@multiformats/blake2": "^2.0.2",
"@stablelib/random": "^1.0.2",
"@types/node": "^20.10.6",
"it-all": "^3.0.4",
"prettier": "^3.1.1",
"tsm": "^2.3.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.7",
"multiformats": "^13.0.0",
"multihashes-sync": "^2.0.0",
"varintes": "^2.0.5"
}
}