-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "@yzfe/qdrant-client",
"version": "0.0.0",
"description": "qdrant client",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"author": "vfasky@me.com",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup",
"cpHome": "cp ./README.md ./docs/README.md",
"docker:init": "docker run -p 6333:6333 -v $(pwd)/qdrant_storage:/qdrant/storage qdrant/qdrant",
"docs": "npm run cpHome && vuepress dev docs",
"docs:build": "npm run cpHome && NODE_ENV=production vuepress build docs",
"test": "ts-node --transpile-only --skip-project test"
},
"dependencies": {
"urllib": "^3.11.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"ts-node": "^9.1.1",
"tsup": "^5.11.7",
"typescript": "^4.2.2"
}
}