UNPKG

autofold

Version:

A lightweight utility for creating directory structures and files from a tree-like string representation.

87 lines (86 loc) 1.94 kB
{ "name": "autofold", "version": "1.0.1", "description": "A lightweight utility for creating directory structures and files from a tree-like string representation.", "type": "module", "files": ["dist"], "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "autofold": "./dist/cli.js" }, "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "scripts": { "build": "bunup", "dev": "bunup --watch", "lint": "biome check .", "lint:fix": "biome check --write .", "format": "biome format .", "format:fix": "biome format --write .", "tsc": "tsc --noEmit", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "release": "bumpp --commit --push --tag --access public", "publish:ci": "bun publish --access public --no-git-checks", "prepare": "husky" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@types/bun": "^1.2.17", "bumpp": "^10.2.0", "bunup": "^0.8.51", "husky": "^9.1.7", "typescript": "^5.8.3" }, "repository": { "type": "git", "url": "git+https://github.com/abura1han/autofold.git" }, "peerDependencies": { "typescript": ">=4.5.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "publishConfig": { "access": "public" }, "homepage": "https://autofold.vercel.app", "bugs": { "url": "https://github.com/abura1han/autofold/issues" }, "license": "MIT", "dependencies": { "fs": "^0.0.1-security", "path": "^0.12.7" }, "keywords": [ "file-system", "directory-structure", "tree-parser", "file-creation", "javascript", "bun", "node.js", "cli-tool", "automation", "project-scaffolding", "json", "toml", "mit-license", "developer-tools", "structure-generator" ] }