allinssl/frontend/packages/gulp-build-tools/package.json

64 lines
1.5 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{
"name": "@baota/gulp-build-tools",
"version": "1.0.0",
"description": "基于 Gulp 的构建文件调整工具库支持文件重命名、内容替换、上传、压缩、Git操作和SSH执行",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"prepare": "npm run build"
},
"keywords": [
"gulp",
"build",
"rename",
"replace",
"sftp",
"ftp",
"compress",
"git",
"ssh",
"deployment"
],
"author": "Baota Team",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"dependencies": {
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-zip": "^5.1.0",
"basic-ftp": "^5.0.4",
"ssh2-sftp-client": "^9.1.0",
"simple-git": "^3.25.0",
"ssh2": "^1.15.0",
"archiver": "^6.0.2",
"rimraf": "^5.0.5",
"chalk": "^4.1.2",
"through2": "^4.0.2"
},
"devDependencies": {
"@types/gulp": "^4.0.17",
"@types/gulp-rename": "^2.0.6",
"@types/gulp-zip": "^4.0.4",
"@types/through2": "^2.0.41",
"@types/archiver": "^6.0.2",
"@types/ssh2": "^1.15.1",
"@types/node": "^22.0.0",
"typescript": "^5.8.2",
"vitest": "^3.0.7",
"eslint": "^9.0.0",
"prettier": "^3.0.0"
},
"peerDependencies": {
"gulp": "^4.0.0 || ^5.0.0"
}
}