lowdefy/packages/cli/package.json
2022-06-20 11:57:46 +02:00

66 lines
1.5 KiB
JSON

{
"name": "lowdefy",
"version": "4.0.0-alpha.16",
"license": "Apache-2.0",
"description": "Lowdefy CLI",
"homepage": "https://lowdefy.com",
"keywords": [
"lowdefy",
"cli"
],
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [
{
"name": "Sam Tolmay",
"url": "https://github.com/SamTolmay"
},
{
"name": "Gerrie van Wyk",
"url": "https://github.com/Gervwyk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/lowdefy.git"
},
"type": "module",
"bin": "./dist/index.js",
"files": [
"dist/*"
],
"exports": "./dist/index.js",
"scripts": {
"build": "yarn swc",
"clean": "rm -rf dist && rm -rf .lowdefy",
"start": "yarn node ./dist/index.js",
"prepare": "yarn build",
"swc": "swc src --out-dir dist --config-file ../../.swcrc --delete-dir-on-start",
"test": "FORCE_COLOR=3 yarn node --experimental-vm-modules $(yarn bin jest)"
},
"dependencies": {
"@lowdefy/helpers": "4.0.0-alpha.16",
"@lowdefy/node-utils": "4.0.0-alpha.16",
"axios": "0.27.2",
"chalk": "4.1.2",
"commander": "9.0.0",
"decompress": "4.2.1",
"decompress-targz": "4.1.1",
"dotenv": "16.0.1",
"ora": "5.4.1",
"uuid": "8.3.2",
"yaml": "2.1.1"
},
"devDependencies": {
"@jest/globals": "28.1.0",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.194",
"@swc/jest": "0.2.21",
"jest": "28.1.0"
},
"publishConfig": {
"access": "public"
}
}