Files
pnpm/text/tree-renderer/package.json
2026-02-17 15:49:12 +01:00

44 lines
1.1 KiB
JSON

{
"name": "@pnpm/text.tree-renderer",
"version": "1000.0.0",
"description": "Renders a tree structure with box-drawing characters",
"keywords": [
"pnpm",
"pnpm10"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/text/tree-renderer",
"homepage": "https://github.com/pnpm/pnpm/tree/main/text/tree-renderer#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"start": "tsgo --watch",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"devDependencies": {
"@pnpm/text.tree-renderer": "workspace:*"
},
"engines": {
"node": ">=18.12"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}