forked from webgptorg/promptbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.38 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
{
"name": "promptbook",
"version": "0.44.0-14",
"description": "Library to supercharge your use of large language models",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/webgptorg/promptbook"
},
"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/promptbook/issues"
},
"homepage": "https://www.npmjs.com/package/@promptbook/core",
"scripts": {
"test": "jest",
"test-types": "tsc",
"lint": "eslint src",
"generate-packages": "ts-node ./scripts/generate-packages/generate-packages.ts --commit",
"update-version-in-config": "ts-node ./scripts/update-version-in-config/update-version-in-config.ts --commit",
"use-packages": "ts-node ./scripts/use-packages/use-packages.ts",
"preversion": "git pull && npm run lint && npm test && tsc",
"postversion": "npm run update-version-in-config && npm run generate-packages && git push && git push --tags && npm run use-packages"
},
"devDependencies": {
"@rollup/plugin-typescript": "8.3.0",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"dotenv": "16.3.1",
"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.1",
"tslib": "2.3.1",
"yaml": "2.3.3"
},
"dependencies": {
"colors": "1.4.0",
"commander": "12.0.0",
"destroyable": "^0.12.26",
"glob-promise": "6.0.5",
"lorem-ipsum": "^2.0.8",
"moment": "^2.30.1",
"openai": "4.2.0",
"prettier": "2.8.1",
"socket.io": "4.7.2",
"socket.io-client": "4.7.2",
"spacetrim": "0.11.2",
"type-fest": "4.5.0",
"waitasecond": "1.11.33"
}
}