47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@dbx-app/plugin-cli",
|
|
"version": "0.1.0",
|
|
"description": "Create and package DBX plugins without compiling the DBX plugin CLI",
|
|
"keywords": [
|
|
"cli",
|
|
"database",
|
|
"dbx",
|
|
"plugin",
|
|
"plugin-development"
|
|
],
|
|
"homepage": "https://github.com/t8y2/dbx/tree/main/plugins",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/t8y2/dbx",
|
|
"directory": "packages/plugin-cli"
|
|
},
|
|
"bin": {
|
|
"dbx-plugin": "bin/dbx-plugin.js"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"README.md",
|
|
"sdk-root"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "node --check bin/dbx-plugin.js && node --check scripts/stage-sdk.mjs",
|
|
"test": "node --test tests/*.test.mjs",
|
|
"prepack": "node scripts/stage-sdk.mjs",
|
|
"postpack": "node scripts/stage-sdk.mjs --clean",
|
|
"prepublishOnly": "npm run build && npm test"
|
|
},
|
|
"optionalDependencies": {
|
|
"@dbx-app/plugin-cli-darwin-arm64": "0.1.0",
|
|
"@dbx-app/plugin-cli-darwin-x64": "0.1.0",
|
|
"@dbx-app/plugin-cli-linux-arm64-gnu": "0.1.0",
|
|
"@dbx-app/plugin-cli-linux-x64-gnu": "0.1.0",
|
|
"@dbx-app/plugin-cli-win32-arm64": "0.1.0",
|
|
"@dbx-app/plugin-cli-win32-x64": "0.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.18.0"
|
|
}
|
|
}
|