- generic `server.serve` config - new demo workspace - new basic template - updated readme Reviewed-on: https://git.ayo.run/ayo/mcfly/pulls/3 Co-authored-by: Ayo <ayo@ayco.io> Co-committed-by: Ayo <ayo@ayco.io>
31 lines
890 B
JSON
31 lines
890 B
JSON
{
|
|
"name": "site",
|
|
"description": "McFly is a full-stack no-framework framework that assists developers in building on the Web.",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.ayo.run/ayo/mcfly",
|
|
"directory": "app"
|
|
},
|
|
"author": "Ayo Ayco",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://todo.sr.ht/~ayoayco/mcfly-todo"
|
|
},
|
|
"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 --preset=node-server && pnpm run preview",
|
|
"deploy": "netlify deploy --site=$NETLIFY_SITE_ID --dir=dist --prod"
|
|
},
|
|
"dependencies": {
|
|
"@mcflyjs/config": "workspace:*",
|
|
"@mcflyjs/core": "workspace:*"
|
|
}
|
|
}
|