isomorphic-svg-charts
Version:
A lightweight, environment-agnostic SVG charting library that works both in the browser and server-side, with no dependencies and no DOM reliance.
55 lines (54 loc) • 1.51 kB
JSON
{
"name": "isomorphic-svg-charts",
"version": "0.0.0-alpha2",
"description": "A lightweight, environment-agnostic SVG charting library that works both in the browser and server-side, with no dependencies and no DOM reliance.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"!**/*.test.ts",
"!**/*.test-d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"clean": "rm -rf ./dist/* || true",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"dev": "nodemon --watch src -e ts --exec 'yarn build:esm && yarn build:cjs'",
"test": "vitest --typecheck",
"prepublishOnly": "yarn build"
},
"author": "Christian Juth",
"license": "MIT",
"repository": "christianjuth/isomorphic-svg-charts",
"homepage": "https://christianjuth.github.io/isomorphic-svg-charts",
"bugs": "https://github.com/christianjuth/isomorphic-svg-charts/issues",
"devDependencies": {
"nodemon": "^3.1.7",
"typescript": "^5.6.2",
"vitest": "2.1.1"
},
"keywords": [
"svg",
"charts",
"charting",
"isomorphic",
"node",
"browser",
"server-side",
"lightweight",
"environment-agnostic",
"data-visualization",
"minimal",
"bar-chart",
"line-chart",
"area-chart"
]
}