UNPKG

simple-ascii-chart

Version:
69 lines (68 loc) 1.98 kB
{ "name": "simple-ascii-chart", "version": "5.3.1", "description": "Simple ascii chart generator", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "import": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "require": "./dist/index.cjs" } }, "scripts": { "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "jest --coverage", "test:watch": "jest --watch", "check-exports": "npx --yes @arethetypeswrong/cli --pack .", "build": "tsup src/index.ts --format cjs,esm --dts --clean --sourcemap", "build:watch": "tsup src/index.ts --format cjs,esm --dts --clean --sourcemap --watch", "examples": "tsup src/scripts/show-examples.ts --watch --onSuccess \"clear && node dist/show-examples.cjs\"", "snapshots:generate": "tsup src/scripts/generate-snapshots.ts --onSuccess \"node dist/generate-snapshots.cjs\"", "prepare": "npm run build && npm test && npm run lint" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^22.15.17", "@typescript-eslint/eslint-plugin": "^8.32.0", "@typescript-eslint/parser": "^8.32.0", "eslint": "^9.26.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jsdoc": "^50.6.14", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.3.2", "tsup": "^8.4.0", "typescript": "^5.8.3" }, "keywords": [ "ascii", "js", "ts", "chart", "line chart", "bar chart", "plot" ], "author": "gtktsc", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/gtktsc/ascii-chart.git" }, "bugs": { "url": "https://github.com/gtktsc/ascii-chart/issues" }, "homepage": "https://github.com/gtktsc/ascii-chart#readme", "files": [ "dist/**/*" ] }