UNPKG

linkup-sdk

Version:
83 lines (82 loc) 1.82 kB
{ "name": "linkup-sdk", "version": "2.6.2", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "scripts": { "build": "tsc", "commitlint": "commitlint --edit", "lint": "biome check", "lint:fix": "biome check --write", "prepare": "husky", "prune": "knip", "test": "jest", "test:watch": "jest --watch", "semantic-release": "semantic-release", "watch": "tsc --watch" }, "engines": { "node": ">=20.19.0" }, "keywords": [ "linkup", "llm", "nodejs", "api", "sdk", "client", "search" ], "author": "Linkup", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/LinkupPlatform/linkup-js-sdk" }, "description": "A Javascript Client SDK for the Linkup API", "files": [ "dist/**/*" ], "devDependencies": { "@biomejs/biome": "2.0.5", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@types/jest": "^29.5.14", "@types/node": "^24.0.4", "husky": "^9.1.7", "jest": "^29.7.0", "knip": "^5.61.2", "semantic-release": "^24.2.5", "ts-jest": "^29.2.5", "typescript": "^5.8.3" }, "dependencies": { "axios": "^1.8.2", "zod": "^3.24.1", "zod-to-json-schema": "^3.24.1" }, "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", [ "@semantic-release/github", { "failTitle": "The automated release is failing 🚨", "failComment": false, "labels": false, "releasedLabels": false } ] ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] } }