-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "blockstore-enc",
"version": "1.0.1",
"main": "dist/index.min.js",
"license": "MIT",
"type": "module",
"author": "dozyio",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo",
"!.gitignore",
"!.prettierignore"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"dependencies": {
"it-map": "^3.1.1",
"it-parallel-batch": "^3.0.6",
"multiformats": "^13.2.3"
},
"devDependencies": {
"@types/node": "^22.5.5",
"aegir": "^44.1.1",
"blockstore-fs": "^2.0.2",
"interface-blockstore": "^5.3.1",
"interface-store": "^6.0.2",
"vitest": "^2.1.1"
},
"scripts": {
"build": "aegir build",
"test": "vitest run --hideSkippedTests --allowOnly",
"test:bench": "vitest bench --maxConcurrency 1",
"lint": "aegir lint --fix"
}
}