kode/package.json

23 lines
550 B
JSON
Raw Normal View History

2024-03-14 19:15:55 -05:00
{
"dependencies": {
"node-fetch": "^3.3.2",
"ollama-js-client": "^1.0.1",
"prompt": "^1.3.0"
},
"name": "kode",
"version": "1.0.0",
"description": "Feedback loop to help AI code",
2024-03-15 17:55:43 -05:00
"main": "index.mjs",
2024-03-14 19:15:55 -05:00
"type": "module",
"scripts": {
2024-03-15 17:55:43 -05:00
"windows": "npm i && cls && node index.mjs",
"nix": "npm i; clear; node index.mjs"
2024-03-14 19:15:55 -05:00
},
"repository": {
"type": "git",
"url": "https://nodemixaholic.com:3002/nodemixaholic/kode"
},
"author": "Samuel Lord",
"license": "SEE LICENSE IN LICENSE"
}