kingoftime-cli/package.json

67 lines
1.6 KiB
JSON

{
"name": "kingoftime-cli",
"version": "0.0.0",
"description": "King of Time CLI (unofficial)",
"author": "Adam Millerchip",
"bin": {
"kot": "./bin/run"
},
"homepage": "https://git.adamu.jp/adam/kingoftime-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "https://git.adamu.jp/adam/kingoftime-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"axios": "^1.3.5"
},
"devDependencies": {
"@oclif/test": "^2.3.14",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.23",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"mocha": "^9",
"oclif": "^3.8.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "kot",
"dirname": "kot",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"setup": "npm install && npm run build && npm link"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://git.adamu.jp/adam/kingoftime-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}