1
0
Fork 0
mirror of synced 2024-05-17 10:53:15 +12:00
budibase/packages/cli/package.json

58 lines
1.5 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-11-22 01:54:57 +13:00
"version": "2.1.31",
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": {
2022-11-22 01:54:57 +13:00
"@budibase/backend-core": "^2.1.31",
"@budibase/string-templates": "^2.1.31",
"@budibase/types": "^2.1.31",
"axios": "0.21.2",
2022-07-19 04:56:04 +12:00
"chalk": "4.1.0",
"cli-progress": "3.11.2",
"commander": "7.1.0",
"docker-compose": "0.23.6",
"dotenv": "16.0.1",
2022-09-13 01:05:36 +12:00
"download": "8.0.0",
2022-10-01 00:22:29 +13:00
"find-free-port": "^2.0.0",
2022-07-19 04:56:04 +12:00
"inquirer": "8.0.0",
2022-09-13 01:05:36 +12:00
"joi": "17.6.0",
2022-07-19 04:56:04 +12:00
"lookpath": "1.1.0",
"node-fetch": "2",
"pkg": "5.8.0",
2021-06-09 07:20:19 +12:00
"posthog-node": "1.0.7",
2022-07-19 04:56:04 +12:00
"pouchdb": "7.3.0",
"pouchdb-replication-stream": "1.2.9",
"randomstring": "1.1.5",
"tar": "6.1.11",
2022-10-01 00:22:29 +13:00
"yaml": "^2.1.1"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^7.20.0",
"renamer": "^4.0.0"
2021-02-25 06:32:45 +13:00
}
2022-11-01 03:01:44 +13:00
}