zy-gbs-cmd/package.json

32 lines
658 B
JSON
Raw Normal View History

2026-08-25 17:17:36 +08:00
{
"name": "zy-gbs-cmd",
"version": "1.0.0",
"private": false,
"description": "",
"author": "LiuJiaNan",
"license": "MIT",
"type": "commonjs",
"files": [
"bin",
"src",
"README.md"
],
"bin": {
"zy-gbs-cmd": "bin/command.js"
},
"scripts": {
"test": "node test/package-manager.test.js && node test/push.test.js && node bin/command.js help",
"prepublishOnly": "yarn test",
"patch": "npm version patch",
"minor": "npm version minor",
"release": "npm publish"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}