Files
NetMesh/packages/plugin-cli/package.json

32 lines
645 B
JSON
Raw Normal View History

{
"name": "@netcatty/plugin-cli",
"version": "0.1.0-internal",
"private": true,
"type": "module",
"license": "GPL-3.0-or-later",
"files": ["dist"],
"bin": {
"netcatty-plugin": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@netcatty/plugin-contract": "0.1.0-internal",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"semver": "^7.7.3",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/semver": "^7.7.1",
"@types/yauzl": "^2.10.3"
}
}