-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (76 loc) · 1.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gpts",
"version": "1.0.8",
"description": "typescript wrapper for gpt-3 api",
"keywords": [
"gpt",
"gpt-3",
"ts",
"gpts",
"typescript"
],
"author": "@spencercap (@thencc)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thencc/gpts.git"
},
"bugs": {
"url": "https://github.com/thencc/gpts/issues"
},
"homepage": "https://github.com/thencc/gpts#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "ts-node demo/index.ts"
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"typescript": "^4.2.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"ignorePatterns": [
"node_modules",
"dist"
],
"rules": {
"quotes": [
"warn",
"single"
],
"@typescript-eslint/indent": [
"warn",
"tab"
],
"semi": [
"warn",
"always"
]
}
}
}