generated from webgptorg/promptbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.31 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
78
79
80
{
"name": "@webgpt/sdk",
"version": "0.22.0",
"description": "WebGPT SDK is a TypeScript / JavaScript library for interacting with the WebGPT API.",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/webgptorg/webgpt-sdk"
},
"contributors": [
"Pavol Hejný <[email protected]> (https://www.pavolhejny.com/)"
],
"keywords": [
"autogpt",
"openai",
"gpt-3",
"gpt-4",
"chatgpt",
"ai",
"machine-learning",
"natural-language-processing",
"nlp",
"prompt",
"template",
"pipeline",
"automation",
"text-generation",
"language-model"
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/webgptorg/webgpt-sdk/issues"
},
"homepage": "https://www.npmjs.com/package/@webgpt/sdk",
"scripts": {
"test": "jest",
"test-types": "tsc",
"lint": "eslint src",
"build": "npx rollup --config rollup.config.js",
"preversion": "git pull && npm run lint && npm test && tsc",
"postversion": "npm run build && git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-typescript": "8.3.0",
"@types/jest": "27.0.2",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"colors": "1.4.0",
"eslint": "8.52.0",
"jest": "27.3.1",
"organize-imports-cli": "0.10.0",
"rollup": "2.58.1",
"ts-jest": "27.0.7",
"ts-node": "10.9.2",
"tslib": "2.3.1"
},
"dependencies": {
"@promptbook/utils": "0.52.0-6",
"rxjs": "7.8.1",
"socket.io-client": "4.7.2",
"spacetrim": "0.11.25",
"uuid": "9.0.1",
"waitasecond": "1.11.69"
},
"main": "./dist/umd/index.umd.js",
"module": "./dist/esm/index.es.js",
"typings": "./dist/esm/typings/index.d.ts",
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/hejny"
},
{
"type": "github",
"url": "https://github.com/webgptorg/webgpt-sdk/blob/main/README.md#%EF%B8%8F-contributing"
}
]
}