74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "@automatisch/cli",
|
|
"version": "0.1.5",
|
|
"license": "AGPL-3.0",
|
|
"description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
|
|
"contributors": [
|
|
{
|
|
"name": "automatisch contributors",
|
|
"url": "https://github.com/automatisch/automatisch/graphs/contributors"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/automatisch/automatisch#readme",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"automatisch": "./bin/automatisch"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"oclif.manifest.json"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/automatisch/automatisch.git"
|
|
},
|
|
"scripts": {
|
|
"build": "shx rm -rf dist && tsc -b",
|
|
"build:watch": "nodemon --watch 'src/**/*.ts' --exec 'shx rm -rf dist && tsc -b' --ext 'ts'",
|
|
"lint": "eslint . --ext .ts --ignore-path ../../.eslintignore",
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
"posttest": "yarn lint",
|
|
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
"version": "oclif readme && git add README.md"
|
|
},
|
|
"dependencies": {
|
|
"@automatisch/backend": "^0.1.5",
|
|
"@oclif/core": "^1",
|
|
"@oclif/plugin-help": "^5",
|
|
"@oclif/plugin-plugins": "^2.0.1",
|
|
"dotenv": "^10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/test": "^2",
|
|
"@types/node": "^16.9.4",
|
|
"eslint-config-oclif": "^4",
|
|
"eslint-config-oclif-typescript": "^1.0.2",
|
|
"globby": "^11",
|
|
"oclif": "^2",
|
|
"shx": "^0.3.3",
|
|
"ts-node": "^10.2.1",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"oclif": {
|
|
"bin": "automatisch",
|
|
"dirname": "automatisch",
|
|
"commands": "./dist/commands",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-plugins"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/automatisch/automatisch/issues"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|