-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
75 lines (75 loc) · 1.75 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
{
"name": "chatgpt-prompts",
"version": "3.1.0",
"description": "A NodeJS ChatGPT prompts library",
"type": "module",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"watch": "npm run build -- --watch src",
"pretest": "tsc --noEmit",
"watch:test": "NODE_OPTIONS=--experimental-vm-modules npx jest --watchAll --verbose --coverage",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --verbose --coverage",
"prepublishOnly": "npm run build",
"generate:prompts": "cd generators && npm run generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pacholoamit/chatgpt-prompts.git"
},
"author": "pacholo amit",
"license": "MIT",
"bugs": {
"url": "https://github.com/pacholoamit/chatgpt-prompts/issues"
},
"homepage": "https://github.com/pacholoamit/chatgpt-prompts#readme",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.19",
"axios": "^1.3.2",
"csv": "^6.2.6",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"jest": "^29.4.3",
"lodash": "^4.17.21",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"chatgpt": "^5.1.2"
},
"keywords": [
"openai",
"chatgpt",
"chat",
"gpt",
"gpt-3",
"gpt3",
"gpt4",
"chatbot",
"machine learning",
"conversation",
"conversational ai",
"ai",
"ml",
"bot"
]
}