1234567891011121314151617181920212223242526272829303132333435 |
- {
- "type": "module",
- "name": "ollama",
- "version": "0.2.1",
- "description": "Interface with an ollama instance over HTTP.",
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "scripts": {
- "test": "jest --config=jest.config.cjs ./test/*",
- "build": "mkdir -p dist && touch dist/cleanup && rm dist/* && tsc -b",
- "lint": "eslint ./src/* ./test/*",
- "prepublishOnly": "npm run build"
- },
- "homepage": "https://code.organicdesign.nz/organicdesign/node-ollama",
- "repository": {
- "type": "git",
- "url": "https://github.com/organicdesign/node-ollama.git"
- },
- "author": "Saul Boyd",
- "license": "MIT",
- "devDependencies": {
- "@swc/core": "^1.3.14",
- "@types/jest": "^29.2.2",
- "@typescript-eslint/eslint-plugin": "^5.42.1",
- "@typescript-eslint/parser": "^5.42.1",
- "eslint": "^8.29.0",
- "eslint-plugin-jest": "^27.1.4",
- "jest": "^29.3.0",
- "ts-jest": "^29.0.3",
- "typescript": "^4.8.4"
- },
- "dependencies": {
- "node-fetch": "^3.3.2"
- }
- }
|