-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "@turbopuffer/turbopuffer",
"version": "0.5.13",
"description": "Official Typescript API client library for turbopuffer.com",
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"postinstall:workspaces": "npm run build",
"test": "jest --config jest_node.config.js",
"format": "prettier --check . --ignore-path ./.gitignore",
"format:fix": "prettier --check . --ignore-path ./.gitignore --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"homepage": "https://turbopuffer.com",
"repository": {
"type": "git",
"url": "git+https://github.com/turbopuffer/turbopuffer-typescript.git"
},
"author": "Morgan Gallant <[email protected]>",
"license": "MIT",
"keywords": [
"turbopuffer",
"embeddings",
"vector database",
"semantic search"
],
"files": ["dist", "README.md", "LICENSE"],
"main": "./dist/turbopuffer.js",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"dependencies": {
"pako": "^2.1.0",
"undici": "^6.19.8"
}
}