UNPKG

gulp-tateru-cli

Version:

Gulp plugin to build templates, using tateru-cli

72 lines (71 loc) 1.76 kB
{ "name": "gulp-tateru-cli", "description": "Gulp plugin to build templates, using tateru-cli", "version": "0.2.0", "main": "lib/cjs/index.js", "module": "lib/esm/index.js", "files": [ "package.json", "README.md", "LICENSE", "lib" ], "keywords": [ "gulp", "tateru", "tateru-cli", "gulpplugin", "typescript" ], "homepage": "https://github.com/danielsitek/gulp-tateru-cli#readme", "repository": { "type": "git", "url": "git+https://github.com/danielsitek/gulp-tateru-cli.git" }, "bugs": { "url": "https://github.com/danielsitek/gulp-tateru-cli/issues" }, "scripts": { "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "build:types": "tsc -p tsconfig.types.json", "build": "npm run build:cjs && npm run build:esm && npm run build:types", "clean": "rm -rf lib", "prepack": "npm run clean && npm run build", "test": "vitest", "coverage": "vitest run --coverage" }, "author": { "name": "Daniel Sitek", "email": "dan.sitek@gmail.com", "url": "https://danielsitek.cz" }, "license": "MIT", "dependencies": { "plugin-error": "^2.0.1", "tateru-cli": "^1.5.0", "through2": "^4.0.2", "vinyl": "^3.0.1" }, "devDependencies": { "@types/gulp": "^4.0.18", "@types/node": "^24.10.0", "@types/through2": "^2.0.41", "@types/vinyl": "^2.0.12", "@vitest/coverage-v8": "^4.0.8", "gulp": "^5.0.1", "typescript": "^5.9.3", "vitest": "^4.0.8" }, "exports": { ".": { "types": "./lib/index.d.ts", "require": "./lib/cjs/index.js", "import": "./lib/esm/index.js" } }, "engines": { "node": ">=20" }, "types": "./lib/index.d.ts" }