
* chore(cli): add vitest & add test script * chore: add test:cli script * test(cli): initial tests for build command * chore(cli): add nitropack as devDepencency for tests * chore(cli): add vitest config * test(cli): add tests for build command * test(cli): add tests for new command
33 lines
691 B
JSON
33 lines
691 B
JSON
{
|
|
"name": "@mcflyjs/cli",
|
|
"version": "0.0.26",
|
|
"description": "McFly CLI tools",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"mcfly": "./index.js"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ayoayco/McFly.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"author": "Ayo Ayco",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ayoayco/McFly/issues"
|
|
},
|
|
"homepage": "https://github.com/ayoayco/McFly#readme",
|
|
"dependencies": {
|
|
"@mcflyjs/core": "latest",
|
|
"citty": "^0.1.4",
|
|
"consola": "^3.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"nitropack": "2.8",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
}
|