UNPKG

@spawn-so/spawn-node

Version:

Client for the Spawn API using NodeJS

86 lines 1.96 kB
{ "name": "@spawn-so/spawn-node", "version": "0.2.4", "description": "Client for the Spawn API using NodeJS", "packageManager": "pnpm@7.13.2", "engines": { "node": ">=16" }, "publishConfig": { "access": "public" }, "type": "commonjs", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "author": "Benjamin Trom", "license": "MIT", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" } }, "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "files": [ "dist" ], "peerDependencies": { "@supabase/supabase-js": "^2.1.0", "pusher-client": "1.1.0" }, "devDependencies": { "@types/jest": "^29.2.4", "@types/node": "^18.11.17", "jest": "^29.3.1", "prettier": "^2.7.1", "rimraf": "^3.0.2", "ts-jest": "^29.0.0", "typescript": "^4.8.2" }, "dependencies": { "@supabase/supabase-js": "^2.1.0", "bumpp": "^8.2.1", "dotenv": "^16.0.3", "pusher-client": "1.1.0", "ts-node": "^10.9.1", "unbuild": "^1.0.2" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/SpawnStudio/spawn-js.git" }, "keywords": [ "API", "Client", "for", "Spawn", "API", "(https://spawn.ai)" ], "bugs": { "url": "https://github.com/SpawnStudio/spawn-js/issues" }, "homepage": "https://github.com/SpawnStudio/spawn-js#readme", "scripts": { "build": "rimraf dist && unbuild", "dev": "unbuild --stub", "lint": "eslint . --ext=.ts", "format": "prettier --write .", "release": "bumpp --commit --push --tag && pnpm publish --no-git-checks", "start": "node --loader=ts-node/esm src/index.ts", "test": "jest --setupFiles dotenv/config", "typecheck": "tsc --noEmit" } }