budibase/packages/cli/package.json

63 lines
1.7 KiB
JSON
Raw Normal View History

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