mcfly/packages/create-mcfly/package.json
Ayo Ayco 280e2f6150 chore(create-mcfly, config): migrate to typescript
- initial migration before we do the core
2025-02-28 21:50:28 +01:00

37 lines
826 B
JSON

{
"name": "create-mcfly",
"version": "0.4.3",
"description": "Create a new McFly app",
"type": "module",
"bin": {
"create-mcfly": "./index.js"
},
"main": "index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc --build tsconfig.json",
"version": "npm version",
"publish": "npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.sr.ht/~ayoayco/mcfly",
"directory": "packages/create-mcfly"
},
"author": "Ayo Ayco",
"license": "MIT",
"bugs": {
"url": "https://todo.sr.ht/~ayoayco/mcfly-todo"
},
"homepage": "https://mcfly.js.org",
"dependencies": {
"consola": "^3.2.3",
"giget": "^1.1.3"
}
}