UNPKG

neura-sdk

Version:

TypeScript SDK for interacting with the Neura AI API

54 lines 1.28 kB
{ "name": "neura-sdk", "version": "1.0.0", "description": "TypeScript SDK for interacting with the Neura AI API", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest", "lint": "eslint src --ext .ts,.tsx", "format": "prettier --write \"src/**/*.{ts,tsx}\"", "prepare": "npm run build" }, "keywords": [ "neura", "ai", "sdk", "api", "typescript", "react" ], "author": "", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "@types/react": "^18.0.33", "@types/react-dom": "^18.0.11", "@typescript-eslint/eslint-plugin": "^5.57.1", "@typescript-eslint/parser": "^5.57.1", "eslint": "^8.38.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-react": "^7.32.2", "jest": "^29.5.0", "prettier": "^2.8.7", "ts-jest": "^29.1.0", "typescript": "^5.0.4" }, "dependencies": { "@types/p-retry": "^3.0.1", "@types/p-throttle": "^2.1.0", "p-retry": "^5.1.2", "p-throttle": "^5.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "engines": { "node": ">=14.0.0" } }