-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 897 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
40
41
42
{
"name": "gpt-functions",
"version": "0.0.4",
"description": "Never code again",
"main": "build/index.js",
"files": [
"build/**/*"
],
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src/**/*.ts",
"fmt": "prettier --write src/**/*.ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/alenvelocity/gpt-functions"
},
"keywords": [
"gpt",
"openai",
"chatgpt",
"gpt4",
"javascript",
"typescript",
"no-code"
],
"author": "Alen Yohannan",
"license": "MIT",
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"prettier": "^2.8.7"
},
"dependencies": {
"common-tags": "^1.8.2",
"openai": "^3.2.1"
}
}