UNPKG

nanogpt-client

Version:
92 lines (91 loc) 2.35 kB
{ "name": "nanogpt-client", "version": "1.0.0", "description": "Client for the NanoGPT API", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "default": "./dist/index.mjs" }, "./dist/*": { "types": "./dist/*.d.ts", "import": "./dist/*.mjs", "require": "./dist/*.cjs" } }, "engines": { "node": ">=18.0.0" }, "packageManager": "npm@8.4.0", "files": [ "dist", "src" ], "scripts": { "build": "tsc && tsup", "generate": "openapi-ts && npm run fix-imports", "lint": "eslint . && npm run lint:lockfile", "lint:fix": "eslint . --fix", "lint:lockfile": "lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm yarn", "test": "c8 node --loader ts-node/esm --test __tests__/**", "test:watch": "c8 node --loader ts-node/esm --test --watch __tests__/**", "coverage:view": "open coverage/lcov-report/index.html", "version": "changeset version", "release": "changeset publish", "fix-imports": "node dist/bin/fix-imports.cjs" }, "publishConfig": { "provenance": true, "access": "public" }, "license": "Apache-2.0", "keywords": [ "nanocurrency", "nano", "ai", "llm", "chatgpt" ], "homepage": "https://github.com/aspic/nanogpt-client", "bugs": { "url": "https://github.com/aspic/nanogpt-client/issues" }, "repository": { "type": "git", "url": "https://github.com/aspic/nanogpt-client.git" }, "devDependencies": { "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.7", "@hey-api/openapi-ts": "^0.64.12", "@types/node": "^22.13.10", "c8": "^10.1.2", "eslint": "^9.6.0", "eslint-plugin-security": "^3.0.1", "husky": "^9.0.11", "lint-staged": "^15.2.7", "lockfile-lint": "^4.14.0", "neostandard": "^0.12.1", "ts-node": "^10.9.2", "tsup": "^8.1.0", "typescript": "^5.5.3", "validate-conventional-commit": "^1.0.4" }, "lint-staged": { "**/*.{js,json}": [ "npm run lint:fix" ] }, "dependencies": { "@hey-api/client-fetch": "^0.8.3" } }