UNPKG

para-client-js

Version:

JavaScript Client for Para

95 lines (94 loc) 2.43 kB
{ "name": "para-client-js", "version": "1.40.9", "description": "JavaScript Client for Para", "homepage": "https://paraio.org", "repository": { "type": "git", "url": "git+https://github.com/Erudika/para-client-js.git" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "browser": "./dist/browser/para-client-js.global.iife.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs", "browser": "./dist/browser/para-client-js.global.iife.js", "default": "./dist/index.mjs" }, "./package.json": "./package.json" }, "author": { "name": "Alex Bogdanovski", "email": "alex@erudika.com" }, "bugs": { "url": "https://github.com/Erudika/para-client-js/issues" }, "files": [ "dist" ], "keywords": [ "para", "client", "back-end", "server-side", "server", "backend", "api", "rest", "json" ], "sideEffects": false, "engines": { "node": ">=18" }, "devDependencies": { "@eslint/js": "^10.0.1", "dotenv": "^17.4.2", "eslint": "^10.4.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-n": "^18.0.1", "eslint-plugin-prettier": "^5.5.5", "globals": "^17.6.0", "lodash": "^4.18.1", "mocha": "^12.0.0-beta-3", "prettier": "^3.8.3", "release-it": "^20.0.1", "testcontainers": "^12.0.0", "tsdown": "^0.22.0", "typescript": "^6.0.3" }, "scripts": { "build": "tsdown --clean", "types": "tsc --project tsconfig.json", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --check .", "format:fix": "prettier --write .", "test": "npm run lint && npm run test:unit && npm run test:integration", "test:unit": "mocha \"test/unit/**/*.spec.js\"", "test:integration": "RUN_PARA_INTEGRATION_TESTS=true mocha --require dotenv/config \"test/integration/**/*.spec.js\"", "prepare": "npm run build && npm run types", "release": "release-it" }, "license": "Apache-2.0", "dependencies": { "aws4": "^1.13.2", "lru-cache": "^11.5.0", "superagent": "^10.3.0" }, "release-it": { "$schema": "https://unpkg.com/release-it/schema/release-it.json", "github": { "release": true }, "npm": { "publish": true } } }