-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 873 Bytes
/
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
{
"name": "relate-text",
"version": "1.1.1",
"type": "module",
"main": "dist/index.js",
"bin": {
"relate-text": "./dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x ./dist/bin/cli.js",
"prepare": "npm run build",
"build & run server": "tsc && relate-text start-server --port 3000"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@xenova/transformers": "^2.17.2",
"commander": "^12.1.0",
"cors": "^2.8.5",
"express": "^4.21.1",
"vectra": "^0.1.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.x",
"ts-node": "^10.x",
"typescript": "^4.x"
},
"author": "Joram Millenaar",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/JoramMillenaar/relate-text.git"
}
}