-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "dria",
"version": "0.0.4",
"license": "Apache-2.0",
"author": "FirstBatch Team <[email protected]>",
"contributors": [
"Erhan Tezcan <[email protected]> (https://github.com/erhant)"
],
"files": [
"build/",
"LICENSE",
"README.md"
],
"type": "module",
"module": "index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "bun run ./build.ts",
"b": "bun run build",
"check": "tsc --noEmit && echo \"All good.\"",
"format": "prettier --check '**/*.ts'",
"lint": "eslint '**/*.ts' && echo 'All good.'",
"test": "bun test --timeout 15000",
"t": "bun run test",
"test:local": "LOCAL_TEST=true bun test local --timeout 15000",
"proto:code": "npx pbjs ./proto/insert.proto -w commonjs -t static-module -o ./proto/insert.js",
"proto:type": "npx pbts ./proto/insert.js -o ./proto/insert.d.ts",
"proto": "bun proto:code && bun proto:type"
},
"dependencies": {
"axios": "^1.6.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"bun-plugin-dts": "^0.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"protobufjs-cli": "^1.1.2",
"typescript": "^5.0.0"
},
"prettier": {
"printWidth": 120
},
"keywords": [
"dria",
"blockchain",
"firstbatch",
"hnsw",
"ai",
"vector",
"vectordb",
"rag"
]
}