@mackenly/fathom-api
Version:
Typescript wrapper around Fathom Analytics API
51 lines (50 loc) • 1.06 kB
JSON
{
"name": "@mackenly/fathom-api",
"version": "0.0.15",
"description": "Typescript wrapper around Fathom Analytics API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate": "zod-validation-error"
},
"keywords": [
"fathom",
"analytics",
"api",
"sdk",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@vitest/coverage-v8": "^0.34.0",
"msw": "^1.2.3",
"tsup": "^7.0.0",
"typescript": "^5.0.0",
"vitest": "^0.34.0"
},
"dependencies": {
"zod": "^3.21.4",
"zod-validation-error": "^1.3.1"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
}
}