-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
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
{
"name": "@tigrisdata/vector",
"version": "1.0.0",
"description": "Tigris Vector Database client for TypeScript",
"author": "Tigris team <[email protected]>",
"contributors": [
{
"name": "Ovais Tariq",
"email": "[email protected]",
"url": "https://www.tigrisdata.com/"
}
],
"license": "Apache-2.0",
"keywords": [
"typescript",
"database",
"vector database",
"vector search"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"release": {
"branches": [
{
"name": "release",
"channel": "latest"
},
{
"name": "next"
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/tigrisdata/tigris-vector-ts"
},
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint --ext .ts src",
"prebuild": "npm run clean && npm install",
"build": "npx tsc",
"test": "jest --verbose --coverage --runInBand --detectOpenHandles --forceExit",
"prettier": "prettier --write .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@tigrisdata/core": "latest"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "18.11.11",
"@types/papaparse": "^5.3.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.3",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-mockito": "^2.6.1",
"ts-node": "10.9.1",
"typescript": "4.9.3"
}
}