UNPKG

@bluvo/sdk-ts

Version:

Bluvo SDK for TypeScript

60 lines 1.61 kB
{ "name": "@bluvo/sdk-ts", "main": "dist/index.js", "version": "5.0.0", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "description": "Bluvo SDK for TypeScript", "author": "Bluvo Inc.", "license": "MIT", "homepage": "https://github.com/bluvoinc/sdk#readme", "repository": { "type": "git", "url": "https://github.com/bluvoinc/sdk.git" }, "bugs": { "url": "https://github.com/bluvoinc/sdk/issues" }, "publishConfig": { "access": "public" }, "keywords": [ "bluvo", "sdk", "typescript", "nodejs", "api" ], "devDependencies": { "@vitest/browser": "^3.2.4", "@vitest/ui": "3.2.4", "esbuild": "^0.24.0", "playwright": "^1.56.0", "tsup": "^8.5.1", "typescript": "^5.0.0", "vitest": "^3.2.4" }, "files": [ "dist/**/*", "README.md" ], "scripts": { "dev": "tsup --watch", "build": "tsup", "test": "vitest run && pnpm test:browser", "test:browser": "vitest run --config vitest.browser.config.ts", "test:browser:ui": "vitest run --config vitest.browser.config.ts --ui", "test:browser:chromium": "vitest run --config vitest.browser.config.ts --browser=chromium", "test:browser:firefox": "vitest run --config vitest.browser.config.ts --browser=firefox", "test:browser:webkit": "vitest run --config vitest.browser.config.ts --browser=webkit" } }