kingoftime-cli/package.json

67 lines
1.6 KiB
JSON
Raw Normal View History

2023-04-14 13:13:50 +00:00
{
"name": "kingoftime-cli",
"version": "0.0.0",
2023-04-26 16:40:01 +00:00
"description": "King of Time CLI (unofficial)",
"author": "Adam Millerchip",
2023-04-14 13:13:50 +00:00
"bin": {
"kot": "./bin/run"
},
2023-04-14 13:54:48 +00:00
"homepage": "https://git.adamu.jp/adam/kingoftime-cli",
2023-04-14 13:13:50 +00:00
"license": "MIT",
"main": "dist/index.js",
2023-04-14 13:54:48 +00:00
"repository": "https://git.adamu.jp/adam/kingoftime-cli",
2023-04-14 13:13:50 +00:00
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"axios": "^1.3.5"
2023-04-14 13:13:50 +00:00
},
"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",
2023-04-14 16:54:04 +00:00
"oclif": "^3.8.0",
2023-04-14 13:13:50 +00:00
"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": [
2023-04-14 13:33:11 +00:00
"@oclif/plugin-help"
]
2023-04-14 13:13:50 +00:00
},
"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\"",
2023-04-15 10:41:03 +00:00
"version": "oclif readme && git add README.md",
"setup": "npm install && npm run build && npm link"
2023-04-14 13:13:50 +00:00
},
"engines": {
"node": ">=12.0.0"
},
2023-04-14 13:54:48 +00:00
"bugs": "https://git.adamu.jp/adam/kingoftime-cli/issues",
2023-04-14 13:13:50 +00:00
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}