@general-dexterity/cube-records
Version:
Opinionated wrapper around @cubejs-client/react
63 lines • 1.5 kB
JSON
{
"name": "@general-dexterity/cube-records",
"version": "0.9.1",
"description": "Opinionated wrapper around @cubejs-client/react",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"cubejs",
"react",
"typescript"
],
"author": "Aliou Diallo <code@general-dexterity.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "latest",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"tsup": "^8.5.0",
"typescript": "^5.6.0",
"vitest": "latest"
},
"peerDependencies": {
"@cubejs-client/core": "^1.3.34",
"@cubejs-client/react": "^1.3.34",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"test": "vitest --run",
"test:watch": "vitest --watch"
}
}