this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 29dcbd2bf85bd92bd25c9fb3860b22c589e39ffe 29 lines 697 B view raw
1{ 2 "name": "array-treeify", 3 "version": "0.1.0", 4 "description": "", 5 "keywords": ["ascii", "tree", "treeify"], 6 "license": "MIT", 7 "author": "tbeseda", 8 "repository": { 9 "type": "git", 10 "url": "https://github.com/tbeseda/array-treeify.git" 11 }, 12 "type": "module", 13 "main": "dist/index.js", 14 "types": "dist/index.d.ts", 15 "files": ["dist"], 16 "scripts": { 17 "lint": "biome check --write .", 18 "build": "rm -rf dist && tsc", 19 "pretest": "npm run build", 20 "test": "node --test", 21 "posttest": "npm run lint", 22 "prepublishOnly": "npm run build" 23 }, 24 "devDependencies": { 25 "@biomejs/biome": "1.9.4", 26 "@types/node": "^22.13.14", 27 "typescript": "^5.3.3" 28 } 29}