mcfly/packages/cli/package.json
Ayo Ayco 2a9b1e6c58
feat: config improvements (#53)
* feat: move defineMcFlyConfig to @mcflyjs/config

* feat: move defineMcFlyConfig to config package

* feat: programmatically build nitro dev server

* chore: bump versions

* feat: spread nitro config if exists

* chore: use nitro build programmatically

* feat: use nitro programmatically in prepare command

* feat: expose types for NitroConfig & McFlyConfig

* feat: use c12 to resolve mcfly config

* fix: too many symlinks

* chore: skip tests for now

* test: cheating

* test: cheating

* chore: update pnpm-lock
2024-12-31 00:25:25 +01:00

41 lines
948 B
JSON

{
"name": "@mcflyjs/cli",
"version": "0.1.0",
"description": "McFly CLI tools",
"type": "module",
"main": "index.js",
"bin": {
"mcfly": "./index.js"
},
"scripts": {
"version": "npm version",
"publish": "npm publish",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"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": {
"c12": "^2.0.1",
"citty": "^0.1.6",
"consola": "^3.3.3",
"pathe": "^1.1.2"
},
"devDependencies": {
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"nitropack": "~2.10.4",
"vitest": "^2.1.8"
}
}