@argdown/node
Version:
Async Argdown application for node.js
106 lines • 2.57 kB
JSON
{
"name": "@argdown/node",
"version": "2.0.3",
"description": "Async Argdown application for node.js",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">= 22.11.0"
},
"scripts": {
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"build": "tsc",
"docs:build": "typedoc ./src/",
"test": "tsc --noEmit && mocha",
"coverage": "nyc mocha",
"report": "nyc report",
"clean": "rimraf \"dist/*\" --glob",
"prepublishOnly": "npm run-script build"
},
"repository": {
"type": "git",
"url": "https://github.com/argdown/argdown/tree/master/packages/argdown-node"
},
"keywords": [
"Argdown"
],
"author": "Christian Voigt",
"license": "MIT",
"dependencies": {
"@argdown/core": "^2.0.1",
"@hpcc-js/wasm-graphviz": "^1.18.0",
"axios": "^1.8.2",
"chokidar": "^5.0.0",
"glob": "^13.0.6",
"image-size": "^2.0.0",
"image-type": "^5.2.0",
"import-fresh": "^3.3.1",
"is-svg": "^5.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.includes": "^4.3.0",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.9",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"mkdirp": "^2.1.6",
"pdfkit": "^0.17.2",
"svg-to-pdfkit": "^0.1.8"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/chai-fs": "^2.0.5",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.defaultsdeep": "^4.6.9",
"@types/lodash.includes": "^4.3.9",
"@types/lodash.isempty": "^4.4.9",
"@types/lodash.isfunction": "^3.0.9",
"@types/lodash.isobject": "^3.0.9",
"@types/lodash.isstring": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.24",
"@types/pdfkit": "^0.13.9",
"@types/svg-to-pdfkit": "^0.1.4",
"chai": "^4.3.10",
"chai-fs": "^2.0.0",
"copyfiles": "^2.2.0",
"intercept-stdout": "^0.1.2",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"typedoc": "0.28.14",
"typescript": "5.9.3"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"tsx"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"packageManager": "yarn@4.9.4"
}