feat(create-component): publish v0.0.1

This commit is contained in:
ayo 2026-05-11 09:30:41 +02:00
parent 33ddc53075
commit 64df8f39b5
2 changed files with 14 additions and 5 deletions

View file

@ -1,10 +1,10 @@
{
"name": "@mcflyjs/create-component",
"version": "0.0.1-alpha",
"version": "0.0.1",
"description": "Create a new web component",
"type": "module",
"bin": {
"create-mcfly-component": "./dist/index.js"
"create-component": "./dist/index.js"
},
"main": "./dist/index.js",
"exports": {
@ -16,13 +16,12 @@
"scripts": {
"build": "tsc --erasableSyntaxOnly",
"dev": "npx jiti ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.ayo.run/ayo/mcfly",
"directory": "packates/create-component"
"directory": "packages/create-component"
},
"author": "Ayo Ayco",
"license": "MIT",

View file

@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"include": ["src"],
"compilerOptions": {
"allowJs": true,
"emitDeclarationOnly": false,
"declarationDir": "./dist",
"outDir": "./dist"
}
}