brickcharts
Version:
A comprehensive library for managing Billboard and Last.FM charts with visualizations and data management
94 lines (93 loc) • 2.74 kB
JSON
{
"name": "brickcharts",
"version": "0.2.0",
"description": "A comprehensive library for managing Billboard and Last.FM charts with visualizations and data management",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:interactive": "npx tsx tests/interactive.ts",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write src/**/*.{ts,tsx}",
"demo": "npx tsx demo/index.ts",
"demo:lastfm": "npx tsx demo/lastfm-demo.ts",
"demo:combined": "npx tsx demo/combined-demo.ts",
"demo:personal-lastfm": "npx tsx demo/personal-lastfm-demo.ts",
"demo:react": "vite serve examples/react --port 3001",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"billboard",
"lastfm",
"charts",
"music",
"visualization",
"data"
],
"author": {
"name": "Ari Daniel Bradshaw",
"company": "Brickstone Studios LLC"
},
"license": "MIT",
"dependencies": {
"@aribradshaw/billboard-top-100": "^3.0.4",
"axios": "^1.6.2",
"chart.js": "^4.4.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^2.30.0",
"html2canvas": "^1.4.1",
"papaparse": "^5.4.1",
"react-chartjs-2": "^5.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20.10.4",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jsdom": "^23.0.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/aribradshaw/brickcharts.git"
},
"bugs": {
"url": "https://github.com/aribradshaw/brickcharts/issues"
},
"homepage": "https://github.com/aribradshaw/brickcharts#readme"
}