Files
smartgulp/package.json
T
2026-05-01 22:17:09 +00:00

69 lines
1.6 KiB
JSON

{
"name": "@push.rocks/smartgulp",
"version": "3.1.0",
"private": false,
"description": "A lightweight replacement for gulp, featuring smart stream handling and file manipulation.",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartgulp.git"
},
"keywords": [
"build tool",
"gulp replacement",
"stream manipulation",
"file manipulation",
"typescript",
"task runner",
"pipeline",
"development tool"
],
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartgulp/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartgulp",
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/gulp-function": "^3.0.7",
"@types/node": "^25.6.0"
},
"dependencies": {
"@push.rocks/smartevent": "^2.0.5",
"@push.rocks/smartfile": "^13.1.3",
"@push.rocks/smartpromise": "^4.2.4",
"@push.rocks/smartstream": "^3.4.2",
"minimatch": "^10.2.5"
},
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
]
}