1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/oclif/package.json
2022-04-15 16:52:45 +09:00

40 lines
882 B
JSON

{
"name": "@kou029w/hello-world",
"version": "0.0.0",
"description": "oclif example Hello World CLI",
"license": "MIT",
"bin": "bin/run",
"files": [
"bin",
"dist",
"oclif.manifest.json"
],
"scripts": {
"build": "run-s build:{te,manifest,readme}",
"build:ts": "tsup src --clean",
"build:manifest": "oclif manifest",
"build:readme": "oclif readme",
"test": "vitest run",
"prepack": "npm run build"
},
"dependencies": {
"@oclif/core": "^1",
"@oclif/plugin-help": "^5"
},
"devDependencies": {
"esbuild-register": "^3.3.2",
"npm-run-all": "^4.1.5",
"oclif": "^3.0.0",
"stdout-stderr": "^0.1.13",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"vitest": "^0.9.3"
},
"oclif": {
"bin": "hello-world",
"commands": "dist/commands",
"plugins": [
"@oclif/plugin-help"
]
}
}