2022-04-15 10:46:49 +09:00
|
|
|
{
|
2022-04-15 15:57:00 +09:00
|
|
|
"name": "@kou029w/hello-world",
|
2022-04-15 10:46:49 +09:00
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "oclif example Hello World CLI",
|
|
|
|
"license": "MIT",
|
2022-04-15 15:57:00 +09:00
|
|
|
"bin": "bin/run",
|
2022-04-15 10:46:49 +09:00
|
|
|
"files": [
|
2022-04-15 15:57:00 +09:00
|
|
|
"bin",
|
|
|
|
"dist",
|
|
|
|
"oclif.manifest.json"
|
2022-04-15 10:46:49 +09:00
|
|
|
],
|
2022-04-15 15:57:00 +09:00
|
|
|
"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"
|
|
|
|
},
|
2022-04-15 10:46:49 +09:00
|
|
|
"dependencies": {
|
|
|
|
"@oclif/core": "^1",
|
2022-04-15 15:57:00 +09:00
|
|
|
"@oclif/plugin-help": "^5"
|
2022-04-15 10:46:49 +09:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-15 15:57:00 +09:00
|
|
|
"esbuild-register": "^3.3.2",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"oclif": "^3.0.0",
|
2022-04-15 16:52:45 +09:00
|
|
|
"stdout-stderr": "^0.1.13",
|
2022-04-15 15:57:00 +09:00
|
|
|
"tsup": "^5.12.5",
|
|
|
|
"typescript": "^4.6.3",
|
|
|
|
"vitest": "^0.9.3"
|
2022-04-15 10:46:49 +09:00
|
|
|
},
|
|
|
|
"oclif": {
|
|
|
|
"bin": "hello-world",
|
2022-04-15 15:57:00 +09:00
|
|
|
"commands": "dist/commands",
|
2022-04-15 10:46:49 +09:00
|
|
|
"plugins": [
|
2022-04-15 15:57:00 +09:00
|
|
|
"@oclif/plugin-help"
|
|
|
|
]
|
|
|
|
}
|
2022-04-15 10:46:49 +09:00
|
|
|
}
|