Update 'package.json'

This commit is contained in:
nodemixaholic 2024-03-15 22:58:31 +00:00
parent e690c88800
commit 1051fe567c

View file

@ -1,22 +1,22 @@
{ {
"dependencies": { "dependencies": {
"node-fetch": "^3.3.2", "node-fetch": "^3.3.2",
"ollama-js-client": "^1.0.1", "ollama-js-client": "^1.0.1",
"prompt": "^1.3.0" "prompt": "^1.3.0"
}, },
"name": "kode", "name": "kode",
"version": "1.0.0", "version": "1.0.0",
"description": "Feedback loop to help AI code", "description": "Feedback loop to help AI code",
"main": "index.mjs", "main": "index.mjs",
"type": "module", "type": "module",
"scripts": { "scripts": {
"windows": "npm i && cls && node index.mjs", "windows": "ollama pull codellama && npm i && cls && node index.mjs",
"nix": "npm i; clear; node index.mjs" "nix": "ollama pull codellama; npm i; clear; node index.mjs"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://nodemixaholic.com:3002/nodemixaholic/kode" "url": "https://nodemixaholic.com:3002/nodemixaholic/kode"
}, },
"author": "Samuel Lord", "author": "Samuel Lord",
"license": "SEE LICENSE IN LICENSE" "license": "SEE LICENSE IN LICENSE"
} }