1
0
Fork 0
mirror of synced 2024-06-14 16:35:02 +12:00
budibase/packages/cli/package.json

52 lines
1.3 KiB
JSON
Raw Normal View History

2021-02-25 06:32:45 +13:00
{
2021-05-21 21:04:45 +12:00
"name": "@budibase/cli",
2022-07-19 02:17:03 +12:00
"version": "1.1.15-alpha.1",
2021-02-25 06:32:45 +13:00
"description": "Budibase CLI, for developers, self hosting and migrations.",
"main": "src/index.js",
2021-03-19 23:50:25 +13:00
"bin": {
"budi": "src/index.js"
},
2021-02-25 06:32:45 +13:00
"author": "Budibase",
2021-11-18 03:21:16 +13:00
"license": "GPL-3.0",
"scripts": {
"prebuild": "rm -rf prebuilds 2> /dev/null && cp -r node_modules/leveldown/prebuilds prebuilds",
"build": "yarn prebuild && renamer --find .node --replace .fake 'prebuilds/**' && pkg . --out-path build && yarn postbuild",
"postbuild": "rm -rf prebuilds 2> /dev/null"
},
2021-05-26 01:12:25 +12:00
"pkg": {
2021-05-26 02:40:12 +12:00
"targets": [
"node16-linux",
"node16-win",
"node16-macos"
],
"assets": [
"node_modules/@budibase/backend-core/dist/**/*",
"prebuilds/**/*"
2021-05-26 02:40:12 +12:00
],
2021-05-26 01:12:25 +12:00
"outputPath": "build"
},
2021-02-25 06:32:45 +13:00
"dependencies": {
"@budibase/backend-core": "^1.0.212-alpha.7",
2021-02-27 02:30:24 +13:00
"axios": "^0.21.1",
2021-02-25 06:32:45 +13:00
"chalk": "^4.1.0",
"cli-progress": "^3.11.2",
2021-02-27 02:30:24 +13:00
"commander": "^7.1.0",
"docker-compose": "^0.23.6",
"dotenv": "^16.0.1",
2021-02-27 02:30:24 +13:00
"inquirer": "^8.0.0",
"lookpath": "^1.1.0",
"node-fetch": "2",
"pkg": "^5.7.0",
2021-06-09 07:20:19 +12:00
"posthog-node": "1.0.7",
"pouchdb": "^7.3.0",
"pouchdb-replication-stream": "^1.2.9",
"randomstring": "^1.1.5",
"tar": "^6.1.11"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^7.20.0",
"renamer": "^4.0.0"
2021-02-25 06:32:45 +13:00
}
}