You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

88 lines
2.1 KiB

{
"name": "tablemark",
"version": "4.1.0",
"description": "Generate markdown tables from a list of objects or JSON data.",
"keywords": [
"markdown",
"table",
"tables",
"json",
"convert",
"generate",
"ghfm",
"tableify",
"typescript"
],
"homepage": "https://github.com/haltcase/tablemark",
"bugs": "https://github.com/haltcase/tablemark/issues",
"repository": "https://github.com/haltcase/tablemark",
"license": "MIT",
"author": "Bo Lingen <bo@haltcase.dev> (https://github.com/haltcase)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"eslint:check": "eslint src tests",
"format": "oxlint --fix && eslint --fix src tests && prettier --write src tests",
"oxlint:check": "oxlint",
"prepublishOnly": "vitest --run && pnpm build",
"prettier:check": "prettier --check src tests",
"test": "vitest",
"typescript:check": "tsgo"
},
"prettier": "@haltcase/style/prettier",
"dependencies": {
"ansi-regex": "^6.2.2",
"change-case": "^5.4.4",
"string-width": "^8.1.0",
"wordwrapjs": "^5.1.0",
"wrap-ansi": "^9.0.2"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@arethetypeswrong/core": "^0.18.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@haltcase/style": "^7.3.1",
"@octokit/types": "^14.1.0",
"@types/node": "^24.3.1",
"@types/wordwrapjs": "^5.1.2",
"@typescript/native-preview": "7.0.0-dev.20250910.1",
"eslint": "^9.35.0",
"eslint-plugin-oxlint": "^1.14.0",
"lefthook": "^1.12.4",
"oxlint": "^1.14.0",
"prettier": "^3.6.2",
"semantic-release": "^24.2.8",
"tsdown": "0.15.0",
"typescript": "^5.9.2",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.15.1",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20",
"onFail": "error"
}
}
}