forked from atinylittleshell/function-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "function-gpt",
"version": "2.0.0",
"description": "A library to simplify the handling of function calling in OpenAI's ChatGPT API.",
"author": "atinylittleshell <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/atinylittleshell/function-gpt.git"
},
"bugs": {
"url": "https://github.com/atinylittleshell/function-gpt/issues"
},
"keywords": [
"ai",
"openai",
"api",
"gpt",
"chatgpt",
"function calling"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"doc": "shx rm -rf doc && typedoc",
"build": "tsup",
"lint": "eslint . --ext .ts",
"test": "vitest run --coverage",
"changeset": "changeset",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tsconfig/node16": "^16.1.0",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitest/coverage-v8": "^0.34.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.2",
"shx": "^0.3.4",
"tsup": "^7.2.0",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.4",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"packageManager": "[email protected]"
}