cli/package.json

40 lines
1.0 KiB
JSON
Raw Normal View History

2020-11-21 15:41:31 +00:00
{
"name": "@squeebot/cli",
2022-12-01 12:46:22 +00:00
"version": "3.5.0",
2020-11-21 15:41:31 +00:00
"description": "Squeebot v3 runtime, environments and configuration",
2020-11-28 20:26:42 +00:00
"main": "dist/squeebot.js",
2020-11-21 15:41:31 +00:00
"bin": {
"squeebot": "./dist/squeebot.js",
"squeebotd": "./dist/squeebotd.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc -w",
2020-11-28 20:26:42 +00:00
"start": "node ./dist/squeebot",
"prepare": "npm run build"
2020-11-21 15:41:31 +00:00
},
"repository": {
"type": "git",
"url": "git+https://gitlab.icynet.eu/Squeebot/cli.git"
},
"author": "Evert \"Diamond\" Prants <evert@lunasqu.ee>",
"license": "MIT",
"devDependencies": {
2021-09-03 17:23:12 +00:00
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.10",
"@types/tar": "^4.0.5",
"@types/yargs": "^17.0.2",
2021-12-18 08:36:28 +00:00
"@typescript-eslint/eslint-plugin": "^5.7.0",
"eslint": "^8.4.1",
2021-09-03 17:23:12 +00:00
"typescript": "^4.4.2"
2020-11-21 15:41:31 +00:00
},
"dependencies": {
2022-12-01 12:46:22 +00:00
"@squeebot/core": "^3.4.0",
2021-09-03 17:23:12 +00:00
"fs-extra": "^10.0.0",
"node-watch": "^0.7.1",
"tar": "^6.1.11",
"yargs": "^17.1.1"
2020-11-21 15:41:31 +00:00
}
}