-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
105 lines (105 loc) · 2.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
98
99
100
101
102
103
104
105
{
"name": "hollowdb-vector",
"version": "0.1.4",
"description": "A vectorDB over HollowDB using HNSW",
"author": "FirstBatch Team <[email protected]>",
"contributors": [
"Erhan Tezcan <[email protected]> (https://github.com/erhant)"
],
"license": "Apache-2.0",
"scripts": {
"proto:code:hnsw": "npx pbjs ./proto/hnsw_comm.proto -w commonjs -t static-module -o ./proto/hnsw_comm.js",
"proto:type:hnsw": "npx pbts ./proto/hnsw_comm.js -o ./proto/hnsw_comm.d.ts",
"proto:code:req": "npx pbjs ./proto/request.proto -w commonjs -t static-module -o ./proto/request.js",
"proto:type:req": "npx pbts ./proto/request.js -o ./proto/request.d.ts",
"test": "jest --bail",
"test:hollow": "jest ./test/hollow.test.ts --bail",
"test:hnsw": "jest ./test/hnsw.test.ts --bail",
"build": "parcel build",
"check": "npx tsc --noEmit && echo \"All good.\"",
"format": "prettier --check '**/*.ts'",
"lint": "eslint '**/*.ts' && echo 'All good.'"
},
"type": "module",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"cjs": "lib/index.cjs",
"mjs": "lib/index.mjs",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"default": "./lib/index.mjs"
},
"targets": {
"cjs": {
"outputFormat": "commonjs",
"isLibrary": true,
"context": "node"
},
"mjs": {
"outputFormat": "esmodule",
"isLibrary": true,
"context": "node"
}
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@parcel/config-default": "^2.10.3",
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-tsc": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"arlocal": "1.1.62",
"arweave": "^1.14.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"parcel": "^2.10.3",
"prettier": "^3.1.1",
"protobufjs-cli": "^1.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"warp-contracts-plugin-ethers": "^1.0.7",
"warp-contracts-plugin-snarkjs": "^0.2.1"
},
"dependencies": {
"heap-js": "^2.3.0",
"protobufjs": "^7.2.5",
"warp-contracts-plugin-deploy": "1.0.12"
},
"peerDependencies": {
"hollowdb": "^1.3.5",
"ioredis": "^5.3.2",
"warp-contracts": "1.4.17",
"warp-contracts-redis": "^0.4.0"
},
"prettier": {
"printWidth": 120
},
"engines": {
"node": ">=12"
},
"keywords": [
"key-value",
"storage",
"database",
"blockchain",
"smart-contracts",
"arweave",
"firstbatch",
"hnsw",
"dria",
"vector",
"vectordb"
]
}