UNPKG

cosmic-analytics

Version:

Lightweight analytics for Cosmic projects

65 lines 1.44 kB
{ "name": "cosmic-analytics", "version": "1.2.4", "description": "Lightweight analytics for Cosmic projects", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./client": { "types": "./dist/client/index.d.ts", "import": "./dist/client/index.mjs", "require": "./dist/client/index.js" }, "./server": { "types": "./dist/server/index.d.ts", "import": "./dist/server/index.mjs", "require": "./dist/server/index.js" } }, "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build" }, "keywords": [ "analytics", "cosmic", "nextjs", "react", "tracking" ], "author": "Cosmic", "license": "UNLICENSED", "peerDependencies": { "next": ">=14.0.0", "react": ">=18.0.0", "react-dom": ">=18.0.0" }, "peerDependenciesMeta": { "next": { "optional": true } }, "devDependencies": { "@types/node": "^20.0.0", "@types/react": "^19.1.0", "@types/react-dom": "^19.1.0", "next": "^15.3.5", "react": "^19.1.0", "react-dom": "^19.1.0", "tsup": "^8.0.0", "typescript": "^5.0.0" } }