-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "pinecone-semantic-search",
"version": "0.0.1",
"description": "",
"license": "MIT",
"author": "Roie Schwaber-Cohen",
"type": "module",
"scripts": {
"clean": "rimraf ./build",
"build": "npm-run-all format lint && tsc",
"start": "node build/src",
"test": "vitest run --coverage --retry 5",
"dev": "ts-node src",
"lint": "eslint src",
"format": "npx prettier --write src && npx sort-package-json",
"format:check": "npx prettier --check src"
},
"dependencies": {
"@pinecone-database/pinecone": "^2.0.0",
"@xenova/transformers": "2.0.1",
"cli-progress": "^3.12.0",
"dotenv": "^16.0.3",
"find-up": "^6.3.0",
"onnxruntime-node": "^1.14.0",
"papaparse": "^5.4.1",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.2.3",
"@types/papaparse": "^5.3.7",
"@types/uuid": "^9.0.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"esm": "^3.2.25",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^0.34.1"
},
"engines": {
"node": ">=18.0.0"
}
}