1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/oclif/package.json

40 lines
850 B
JSON
Raw Normal View History

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",
"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
}