accent/cli/package.json
2024-03-06 08:55:27 -05:00

68 lines
1.5 KiB
JSON

{
"name": "accent-cli",
"version": "0.16.2",
"author": "Simon Prévost",
"description": "Accent CLI",
"bin": {
"accent": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.8.22",
"@oclif/config": "^1.18.8",
"@oclif/core": "^2.3.1",
"@oclif/plugin-help": "^5.2.6",
"@oclif/plugin-not-found": "^2.3.21",
"chalk": "4.1.2",
"cli-ux": "5.6.7",
"decamelize": "5.0.1",
"form-data": "^4.0.0",
"glob": "^8.1.0",
"mkdirp": "^2.1.3",
"node-fetch": "^2.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^2.3.8",
"@types/decamelize": "^3.0.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/node": "18.14.2",
"@types/node-fetch": "^2.6.2",
"fs-extra": "^11.1.0",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"engines": {
"node": "^14.19.0 || >=16.13.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "accent",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mirego/accent.git"
},
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f .oclif.manifest.json",
"prepublishOnly": "npm run build && oclif-dev readme && oclif-dev manifest"
},
"types": "lib/index.d.ts"
}