-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
118 lines (118 loc) · 2.94 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "julius-gpt",
"version": "0.1.7",
"description": "Node.js API & CLI for generating blog posts, product descriptions and many other type of content based on powerfull prompts & ChatGPT API",
"author": "Lombart Christophe <[email protected] >",
"repository": "https://github.com/christophebe/julius-gpt",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"files": [
"build",
"bin"
],
"bin": {
"julius": "./bin/cli-exec.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"copy-prompts": "cpy \"prompts/**/*\" build/prompts",
"build": "tsup && npm run copy-prompts",
"clean": "rimraf build dist",
"prebuild": "npm-run-all clean",
"pretest": "npm-run-all build",
"prestart": "npm-run-all build",
"test": "jest",
"test:debug": "jest --inspect-brk ./tests/**/*.spec.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.13",
"@langchain/community": "0.3.2",
"@langchain/core": "0.3.3",
"@langchain/mistralai": "0.1.1",
"@langchain/openai": "0.3.0",
"@types/inquirer": "^9.0.7",
"axios": "1.7.7",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"inquirer": "^9.1.0",
"inquirer-autocomplete-prompt": "^3.0.1",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"json5": "^2.2.3",
"jsonschema": "^1.4.1",
"langchain": "0.3.2",
"marked": "14.1.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"p-retry": "^6.2.0",
"uuid": "^10.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@eslint/js": "9.11.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/dotenv-safe": "^8.1.6",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/jest": "29.5.13",
"@types/node": "22.6.0",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"cpy-cli": "^5.0.0",
"eslint": "9.11.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "8.3.0",
"tsx": "4.19.1",
"typescript": "5.6.2",
"typescript-eslint": "8.7.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"openai",
"chatgpt",
"chat",
"gpt",
"gpt-3",
"gpt3",
"gpt4",
"machine learning",
"conversation",
"conversational ai",
"ai",
"ml",
"ai write articles",
"ai prompts",
"generate blog posts",
"generate content",
"llm",
"language model",
"mistralai",
"langchain",
"mistral",
"claude",
"anthropic",
"groq",
"custom prompts"
]
}