-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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": "@stauro/minicar",
"version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint src --config eslint.config.js",
"prepublishOnly": "pnpm lint && pnpm build"
},
"keywords": ["ipfs", "car"],
"author": "v1rtl",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^8.54.0",
"@stylistic/eslint-plugin": "^1.4.1",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.13.1",
"bun-types": "^1.0.21",
"eslint": "^8.54.0",
"globals": "^13.23.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@ipld/car": "^5.2.6",
"@ipld/unixfs": "^2.1.2",
"blockstore-core": "^4.3.10",
"ipfs-unixfs-importer": "^15.2.3",
"multiformats": "^13.0.0"
},
"files": ["dist"],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}