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

62 lines
1.7 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",
2023-05-29 20:54:10 +12:00
"version": "0.0.0",
2021-02-25 06:32:45 +13:00
"description": "Budibase CLI, for developers, self hosting and migrations.",
"main": "dist/index.js",
2021-03-19 23:50:25 +13:00
"bin": {
"budi": "dist/index.js"
2021-03-19 23:50:25 +13:00
},
2021-02-25 06:32:45 +13:00
"author": "Budibase",
2021-11-18 03:21:16 +13:00
"license": "GPL-3.0",
"scripts": {
2023-04-03 20:10:23 +12:00
"prebuild": "rm -rf prebuilds 2> /dev/null && cp -r ../../node_modules/leveldown/prebuilds prebuilds",
2023-03-03 08:30:24 +13:00
"rename": "renamer --find .node --replace .fake 'prebuilds/**'",
"tsc": "node ../../scripts/build.js",
2023-03-03 08:30:24 +13:00
"pkg": "pkg . --out-path build --no-bytecode --public --public-packages \"*\" -C GZip",
"build": "yarn prebuild && yarn rename && yarn tsc && yarn pkg && yarn postbuild",
2023-08-01 23:11:04 +12:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null",
"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": [
"node18-linux",
"node18-win",
"node18-macos"
],
"assets": [
"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": {
2023-05-29 20:54:10 +12:00
"@budibase/backend-core": "0.0.0",
"@budibase/string-templates": "0.0.0",
"@budibase/types": "0.0.0",
2023-04-22 03:50:11 +12:00
"chalk": "4.1.0",
"cli-progress": "3.11.2",
"commander": "7.1.0",
"docker-compose": "0.24.0",
2023-04-22 03:50:11 +12:00
"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",
"lookpath": "1.1.0",
"node-fetch": "2.6.7",
"pkg": "5.8.0",
2023-08-02 00:16:37 +12:00
"posthog-node": "1.3.0",
2022-07-19 04:56:04 +12:00
"pouchdb": "7.3.0",
"pouchdb-replication-stream": "1.2.9",
"randomstring": "1.1.5",
2023-06-12 22:12:22 +12:00
"tar": "6.1.15",
2022-10-01 00:22:29 +13:00
"yaml": "^2.1.1"
},
"devDependencies": {
2023-07-25 22:31:17 +12:00
"@types/jest": "29.5.3",
2023-09-07 21:18:29 +12:00
"@types/node-fetch": "2.6.4",
2023-03-04 02:24:17 +13:00
"@types/pouchdb": "^6.4.0",
"renamer": "^4.0.0",
2023-10-18 00:32:39 +13:00
"ts-node": "10.8.1",
2023-09-23 04:17:19 +12:00
"typescript": "5.2.2"
2021-02-25 06:32:45 +13:00
}
2022-12-10 02:52:03 +13:00
}