generated from mopore/jni-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "gpt-on-cli",
"version": "0.2.2",
"description": "Provide access to GPT 3 model via CLI encapsulated as a docker container.",
"main": "App.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mopore/gpt-on-cli"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "mocha dist/test/**/*.js --recursive --exit",
"build": "rm -rf ./dist && tsc -b",
"build-image": "docker buildx build -t jni-gpt-on-cli .",
"run-image": "docker container run --rm jni-gpt-on-cli \"How to install alacritty?\""
},
"keywords": [
"gpt",
"open-ai",
"TypeScript"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"typescript": "^4.9.5"
},
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"openai": "^3.2.1"
}
}