UNPKG

barrelize

Version:

Automatically generating index (barrel) files

56 lines (55 loc) 1.19 kB
{ "name": "barrelize", "version": "1.7.2", "description": "Automatically generating index (barrel) files", "author": "Nizami", "license": "MIT", "keywords": [ "barrels", "typescript", "index.ts", "index.js" ], "repository": { "type": "git", "url": "git@github.com/nizami/barrelize" }, "type": "module", "main": "./lib/index.js", "types": "./lib/index.d.ts", "exports": { ".": { "import": "./lib/index.js", "types": "./lib/index.d.ts" } }, "bin": { "barrelize": "./bin/cli.js" }, "files": [ "bin", "lib", "schema.json" ], "sideEffects": false, "scripts": { "build": "npx barrelize && npm run schema && vite build", "schema": "tsx scripts/schema.script.ts > schema.json", "test": "vitest run" }, "devDependencies": { "@babel/parser": "^7.28.5", "@microsoft/api-extractor": "^7.55.2", "@types/node": "^25.0.3", "cac": "^6.7.14", "chokidar": "^5.0.0", "glob": "^13.0.0", "json5": "^2.2.3", "tsx": "^4.21.0", "typescript": "~5.9.3", "unplugin-dts": "^1.0.0-beta.6", "vite": "^7.3.0", "vitest": "^4.0.16", "zod": "^4.2.1" } }