UNPKG

@feltmaps/js-sdk

Version:

An SDK for Felt maps

86 lines (85 loc) 2.81 kB
{ "name": "@feltmaps/js-sdk", "version": "1.8.0", "description": "An SDK for Felt maps", "keywords": [ "felt", "sdk" ], "main": "./dist/client.cjs", "types": "./dist/client.d.ts", "exports": { ".": { "import": "./dist/client.js", "require": "./dist/client.cjs" }, "./handler": { "import": "./dist/handler.js", "require": "./dist/handler.cjs" } }, "author": "Felt <engineering@felt.com> (https://felt.com)", "license": "MIT", "files": [ "dist", "handler.js", "handler.d.ts", "types-*.ts" ], "repository": { "type": "git", "url": "git+https://github.com/felt/js-sdk.git" }, "bugs": { "url": "https://github.com/felt/js-sdk/issues" }, "homepage": "https://developers.felt.com", "type": "module", "devDependencies": { "@arethetypeswrong/cli": "^0.17.4", "@changesets/cli": "^2.27.9", "@microsoft/api-extractor": "^7.47.9", "@types/node": "^22.7.4", "dtsroll": "^1.4.1", "happy-dom": "^15.7.4", "knip": "^5.31.0", "patch-package": "^8.0.0", "prettier": "^3.3.3", "prettier-plugin-organize-imports": "^4.1.0", "tsup": "^8.3.0", "typedoc": "^0.27.6", "typedoc-plugin-markdown": "^4.4.1", "typedoc-plugin-remark": "^1.2.4", "typedoc-plugin-zod": "^1.3.1", "typescript": "^5.6.2", "vite-tsconfig-paths": "^5.0.1", "vitest": "^2.1.2", "zod": "^3.23.8" }, "optionalDependencies": { "zod": "^3.23.8" }, "scripts": { "build:compile": "tsup && ./scripts/dtsroll.sh", "build:docs": "typedoc", "build": "npm run build:compile && npm run build:docs", "changeset": "changeset", "check:api": "npm run build:compile && attw --pack . --profile node16 && api-extractor run", "check:client-bundle": "npm run build:compile && node ./scripts/check-client-bundle-contents.js", "check:docs": "npm run build:docs && bash ./scripts/check-api-docs.sh", "check:format": "prettier --check .", "check:test": "vitest run", "check:types": "tsc", "check:unused": "knip", "check": "npm run check:client-bundle && npm run check:format && npm run check:api && npm run check:unused && npm run check:types && npm run check:test && npm run check:docs", "format:write": "prettier --write .", "ci": "npm run build && npm run check", "enter-prerelease": "git checkout prerelease && git pull && changeset pre enter next", "exit-prerelease": "git checkout prerelease && git pull && changeset pre exit", "list-changes": "./scripts/list-possible-changes.sh", "local-release:dry": "./scripts/local-release.sh --dry-run", "local-release": "./scripts/local-release.sh", "prepare": "patch-package", "update-api": "npm run build:compile && api-extractor run --local" } }