mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
39 lines
850 B
JSON
39 lines
850 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",
|
|
"tsup": "^5.12.5",
|
|
"typescript": "^4.6.3",
|
|
"vitest": "^0.9.3"
|
|
},
|
|
"oclif": {
|
|
"bin": "hello-world",
|
|
"commands": "dist/commands",
|
|
"plugins": [
|
|
"@oclif/plugin-help"
|
|
]
|
|
}
|
|
}
|