UNPKG

c15t

Version:

<div align="center"> <img src="https://c15t.com/logo-icon.png" alt="c15t Logo" width="64" height="64" /> <h1>c15t</h1> <p>Transform privacy consent from a compliance checkbox into a fully observable system</p>

56 lines 1.41 kB
{ "name": "c15t", "version": "1.5.0", "license": "GPL-3.0-only", "type": "module", "keywords": [ "c15t", "consent", "gdpr", "privacy", "tracking", "compliance" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "browserslist": [ ">0.2%", "not dead", "not op_mini all" ], "dependencies": { "@orpc/client": "1.2.0", "@orpc/server": "1.2.0", "zustand": "^5.0.3", "@c15t/backend": "1.5.0", "@c15t/translations": "1.5.0" }, "devDependencies": { "vitest-localstorage-mock": "^0.1.2", "genversion": "^3.2.0", "@c15t/typescript-config": "0.0.1-beta.1", "@c15t/vitest-config": "1.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "prebuild": "genversion --esm --semi src/version.ts", "build": "pnpm prebuild && rslib build", "dev": "pnpm prebuild && rslib build --watch", "check-types": "tsc --noEmit", "check-types:test": "tsc -p tsconfig.test.json", "fmt": "pnpm biome format --write . && pnpm biome check --formatter-enabled=false --linter-enabled=false --organize-imports-enabled=true --write", "lint": "pnpm biome lint ./src", "test": "vitest run", "test:watch": "vitest" } }