-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.38 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.38 KB
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
{
"name": "@sochdb/sochdb",
"version": "0.5.3",
"description": "SochDB Node.js SDK - AI-native embedded database with concurrent multi-process support",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"_bin",
"bin",
"scripts/postinstall.js",
"README.md",
"LICENSE"
],
"bin": {
"sochdb-server": "./bin/sochdb-server.js",
"sochdb-bulk": "./bin/sochdb-bulk.js",
"sochdb-grpc-server": "./bin/sochdb-grpc-server.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types && npm run postbuild",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"postbuild": "node scripts/fix-esm-imports.js",
"postinstall": "node scripts/postinstall.js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"database",
"llm",
"ai",
"vector-search",
"embedded",
"key-value",
"sochdb",
"context-retrieval",
"transactions"
],
"author": "Sushanth <sushanth@sochdb.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sochdb/sochdb.git",
"directory": "sochdb-nodejs-sdk"
},
"homepage": "https://sochdb.dev",
"bugs": {
"url": "https://github.com/sochdb/sochdb/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.4",
"@grpc/proto-loader": "^0.7.15",
"koffi": "^2.15.0",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"posthog-node": "^4.18.0"
}
}