
* refactor: move cli to core * feat: move cli to core - use route-middleware in serve - eliminate need for `routes` dir in app * feat: use route-middleware in build * chore: update test gh action
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@mcflyjs/core",
|
|
"version": "0.7.0",
|
|
"description": "McFly core package",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"mcfly": "./cli/index.js"
|
|
},
|
|
"scripts": {
|
|
"version": "npm version",
|
|
"publish": "npm publish",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build:middleware": "npx esbuild route-middleware.js --bundle --outfile=mcfly-middleware.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ayoayco/McFly.git",
|
|
"directory": "packages/core"
|
|
},
|
|
"author": "Ayo Ayco",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ayoayco/McFly/issues"
|
|
},
|
|
"homepage": "https://mcfly.js.org",
|
|
"dependencies": {
|
|
"c12": "^2.0.1",
|
|
"citty": "^0.1.6",
|
|
"consola": "^3.3.3",
|
|
"esprima": "^4.0.1",
|
|
"h3": "^1.13.0",
|
|
"nitropack": "latest",
|
|
"pathe": "^1.1.2",
|
|
"ultrahtml": "^1.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/coverage-istanbul": "2.1.8",
|
|
"@vitest/coverage-v8": "2.1.8",
|
|
"@vitest/ui": "2.1.8",
|
|
"esbuild": "^0.24.2",
|
|
"hookable": "^5.5.3",
|
|
"unstorage": "^1.14.4",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
}
|