-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.12 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
{
"name": "@zvec/zvec",
"version": "0.6.0",
"description": "A lightweight, lightning-fast, in-process vector database",
"keywords": [
"vector database",
"ai",
"embedding",
"ann",
"In-process",
"code search"
],
"homepage": "https://zvec.org",
"bugs": {
"url": "https://github.com/alibaba/zvec/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zvec-ai/zvec-node.git"
},
"license": "Apache-2.0",
"author": "Alibaba",
"type": "commonjs",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./src/index.d.mts",
"default": "./src/index.mjs"
},
"require": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
}
},
"files": [
"src/index.js",
"src/index.mjs",
"src/index.d.ts",
"src/index.d.mts",
"scripts/install.js",
"zvec_node_binding.node",
"jieba_dict/jieba.dict.utf8",
"jieba_dict/hmm_model.utf8",
"README.md",
"LICENSE"
],
"scripts": {
"install": "node scripts/install.js",
"bump:bindings": "node scripts/bump-bindings.js",
"bump:main": "node scripts/bump-main.js",
"build": "node scripts/build.js",
"build:debug": "node scripts/build.js --debug",
"build:release": "node scripts/build.js --release",
"dev": "node scripts/dev.js",
"pack-local": "node scripts/pack-local.js",
"publish:bindings": "node scripts/publish-bindings.js",
"publish:main": "node scripts/publish-main.js",
"test": "node tests/basic-test.js",
"test:unit": "jest"
},
"optionalDependencies": {
"@zvec/bindings-darwin-arm64": "0.6.0",
"@zvec/bindings-linux-arm64": "0.6.0",
"@zvec/bindings-linux-x64": "0.6.0",
"@zvec/bindings-win32-x64": "0.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"cmake-js": "^8.0.0",
"jest": "^29.7.0",
"node-addon-api": "^8.9.0",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typedoc": "^0.28.20",
"typedoc-material-theme": "^1.4.1",
"typescript": "^5.9.3"
},
"dependencies": {
"bindings": "^1.5.0"
}
}