
* 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
30 lines
832 B
JSON
30 lines
832 B
JSON
{
|
|
"name": "@mcflyjs/landing-page",
|
|
"description": "McFly is a full-stack no-framework framework that assists developers in leveraging the web platform.",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ayoayco/McFly.git",
|
|
"directory": "app"
|
|
},
|
|
"author": "Ayo Ayco",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ayoayco/McFly/issues"
|
|
},
|
|
"homepage": "https://mcfly.js.org",
|
|
"scripts": {
|
|
"start": "mcfly serve",
|
|
"prepare": "mcfly prepare",
|
|
"dev": "mcfly serve",
|
|
"build": "mcfly build",
|
|
"preview": "node .output/server/index.mjs",
|
|
"build:preview": "pnpm run build && pnpm run preview"
|
|
},
|
|
"dependencies": {
|
|
"@mcflyjs/config": "workspace:*",
|
|
"@mcflyjs/core": "workspace:*"
|
|
}
|
|
}
|