@neo4j-ndl/react-charts
Version:
React implementation of charts from Neo4j Design System
76 lines • 2.28 kB
JSON
{
"name": "@neo4j-ndl/react-charts",
"version": "1.0.51",
"sideEffects": false,
"description": "React implementation of charts from Neo4j Design System",
"keywords": [
"neo4j",
"react",
"design system",
"needle",
"ndl",
"chart",
"charts"
],
"author": "Neo4j Inc.",
"homepage": "https://www.neo4j.design",
"license": "GPL-3.0",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
"./icons": {
"import": "./lib/esm/icons/index.js",
"require": "./lib/cjs/icons/index.js",
"types": "./lib/types/icons/index.d.ts"
},
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
}
},
"directories": {
"lib": "lib"
},
"files": [
"lib",
"icons"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@axe-core/playwright": "4.10.2",
"@playwright/experimental-ct-react": "1.56.0",
"@playwright/test": "1.56.0",
"@storybook/react-vite": "9.1.5",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"react": "19.2.1",
"typescript": "5.9.2"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"@neo4j-ndl/react": "^4.3.5",
"@neo4j-ndl/base": "^4.3.3"
},
"dependencies": {
"classnames": "2.5.1",
"echarts": "5.6.0"
},
"scripts": {
"test": "pnpm run test:playwright",
"test:playwright": "pnpm exec playwright test -c playwright-component-testing.config.ts",
"build": "pnpm run build:esm && pnpm run build:cjs && pnpm run build:types",
"build:esm": "pnpm exec tsc -p tsconfig.esm.json",
"build:cjs": "pnpm exec tsc -p tsconfig.cjs.json",
"watch:esm": "pnpm exec tsc -p tsconfig.esm.json --watch",
"watch:cjs": "pnpm exec tsc -p tsconfig.cjs.json --watch",
"build:types": "pnpm exec tsc -p tsconfig.types.json",
"format": "pnpm exec prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"lint": "pnpm exec eslint src",
"nuke:local": "../../scripts/cc.sh '{yellow ☢️} Nuking react-charts! {yellow ☢️}' && pnpm dlx rimraf@5.0.5 .tsbuildinfo node_modules lib playwright-report test-results playwright/.cache"
}
}