forked from jefferson-calmon/codocx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 987 Bytes
/
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
{
"name": "docuforge",
"version": "1.1.4",
"license": "MIT",
"type": "module",
"repository": "https://github.com/douglasrubims/docuforge.git",
"main": "./dist/index.js",
"bin": {
"docuforge": "./dist/index.js"
},
"scripts": {
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"build": "tsup",
"pub": "npm run build && npm version patch && npm publish",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"format": "npx @biomejs/biome format --write"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.45",
"@clack/prompts": "^0.7.0",
"ai": "^3.3.6",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ignore": "^6.0.2",
"ollama-ai-provider": "^0.15.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.14.9",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}