UNPKG

edgevector

Version:

Official TypeScript/JavaScript SDK for EdgeVector - Edge-native multi-paradigm database with AI-first features

110 lines 2.64 kB
{ "name": "edgevector", "version": "1.0.0", "description": "Official TypeScript/JavaScript SDK for EdgeVector - Edge-native multi-paradigm database with AI-first features", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.js" }, "./edge": { "types": "./dist/edge.d.ts", "import": "./dist/edge.esm.js", "require": "./dist/edge.js" }, "./react": { "types": "./dist/react.d.ts", "import": "./dist/react.esm.js", "require": "./dist/react.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "rollup -c", "build:types": "tsc --declaration --emitDeclarationOnly --outDir dist", "dev": "rollup -c -w", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix", "prepublishOnly": "npm run build", "docs": "typedoc src/index.ts" }, "keywords": [ "database", "edge-computing", "vector-database", "ai-database", "nosql", "document-database", "timeseries", "vector-search", "semantic-search", "embeddings", "cloudflare", "workers", "typescript", "javascript", "sdk", "client", "real-time", "streaming", "websocket", "sse" ], "author": { "name": "EdgeVector Team", "email": "support@edgevector.com", "url": "https://edgevector.com" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/edgevector/sdk.git" }, "bugs": { "url": "https://github.com/edgevector/sdk/issues" }, "homepage": "https://edgevector.com", "engines": { "node": ">=16.0.0" }, "dependencies": { "ws": "^8.14.2" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-node-resolve": "^15.2.1", "@rollup/plugin-typescript": "^11.1.3", "@types/jest": "^29.5.5", "@types/node": "^20.6.0", "@types/ws": "^8.5.5", "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "eslint": "^8.49.0", "jest": "^29.7.0", "rollup": "^3.29.4", "rollup-plugin-dts": "^6.0.2", "ts-jest": "^29.1.1", "tslib": "^2.6.2", "typedoc": "^0.25.1", "typescript": "^5.2.2" }, "peerDependencies": { "react": ">=16.8.0" }, "peerDependenciesMeta": { "react": { "optional": true } } }