electron-ollama
Version:
Bundle Ollama with your Electron.js app for seamless user experience
75 lines (74 loc) • 1.91 kB
JSON
{
"name": "electron-ollama",
"version": "0.1.25",
"private": false,
"description": "Bundle Ollama with your Electron.js app for seamless user experience",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"postbuild": "npm run docs",
"prepublishOnly": "npm run build",
"test": "npm run test:unit",
"test:unit": "jest --config jest.unit.config.js",
"test:integ": "jest --config jest.integ.config.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"docs": "automd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antarasi/electron-ollama.git"
},
"keywords": [
"electron",
"ollama",
"electronjs",
"electron.js",
"ollama-js",
"typescript"
],
"author": "antarasi",
"license": "MIT",
"bugs": {
"url": "https://github.com/antarasi/electron-ollama/issues"
},
"homepage": "https://github.com/antarasi/electron-ollama#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"automd": "^0.4.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"dependencies": {
"tar": "^7.4.3",
"yauzl": "^3.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}