1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +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-04-20 23:08:05 +12:00
"version": "0.0.1",
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": "tsc -p tsconfig.build.json",
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",
"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": {
2023-04-21 09:51:28 +12:00
"@budibase/backend-core": "0.0.1",
"@budibase/string-templates": "0.0.1",
"@budibase/types": "0.0.1",
"axios": "0.21.2",
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",
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": {
"@swc/core": "^1.3.25",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.4.0",
"@types/node-fetch": "2.6.1",
2023-03-04 02:24:17 +13:00
"@types/pouchdb": "^6.4.0",
"copyfiles": "^2.4.1",
"eslint": "^7.20.0",
"renamer": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "4.7.3"
2021-02-25 06:32:45 +13:00
}
2022-12-10 02:52:03 +13:00
}