-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.39 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
{
"name": "@zilliz/milvus2-sdk-node",
"author": "Zilliz",
"milvusVersion": "v3.0.0",
"version": "3.0.6",
"main": "dist/milvus",
"types": "dist/milvus/index.d.ts",
"files": [
"dist"
],
"license": "Apache-2.0",
"repository": "github:milvus-io/milvus-sdk-node",
"scripts": {
"pre": "git submodule update --init --recursive && rm -rf proto/proto/google && mkdir -p proto/proto/google/protobuf && cp node_modules/protobufjs/google/protobuf/descriptor.proto proto/proto/google/protobuf/descriptor.proto",
"build": "rm -rf dist && tsc --declaration && node build.js",
"test": "NODE_ENV=dev jest",
"test-cloud": "NODE_ENV=dev jest test/http --testPathIgnorePatterns=none",
"bench": "ts-node test/tools/bench.ts",
"coverage": "NODE_ENV=dev jest --coverage=true --config jest.config.js --no-cache",
"build-test": " yarn build && NODE_ENV=dev jest test/build/Collection.spec.ts --testPathIgnorePatterns=none",
"example": "npx ts-node",
"doc": "npm --prefix docs run build",
"doc-json": "npx typedoc milvus --json",
"proto:json": "yarn test test/utils/ProtoJson.spec.ts",
"doc:dev": "npm --prefix docs run dev"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.4",
"@grpc/proto-loader": "^0.8.0",
"@opentelemetry/api": "^1.9.0",
"@petamoriken/float16": "^3.8.6",
"@shanghaikid/parquetjs": "1.8.9",
"dayjs": "^1.11.7",
"generic-pool": "^3.9.0",
"lru-cache": "^9.1.2",
"protobufjs": "^7.6.3",
"winston": "^3.9.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@types/jest": "^29.5.1",
"@types/node-fetch": "^2.6.8",
"jest": "^29.5.0",
"long": "^5.2.3",
"minio": "^8.0.7",
"node-fetch": "2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"resolutions": {
"**/glob/minimatch": "3.1.5",
"**/test-exclude/minimatch": "3.1.5",
"**/typedoc/minimatch": "9.0.8",
"**/typedoc/minimatch/brace-expansion": "5.0.8",
"@babel/core": "^7.29.7",
"@babel/helpers": "^7.26.10",
"browserslist": "^4.28.7",
"diff": "^4.0.4",
"fast-xml-parser": "^5.7.0",
"fast-xml-builder": "^1.2.0",
"form-data": "^4.0.6",
"protobufjs": "^7.6.5",
"lodash": "^4.18.1",
"picomatch": "^2.3.2",
"thrift": "0.24.0",
"thrift/uuid": "11.1.1"
},
"publishConfig": {
"access": "public"
}
}