diff --git a/packages/react-output-target/.gitignore b/packages/react-output-target/.gitignore index 7ecf8f0..0d0d3bb 100644 --- a/packages/react-output-target/.gitignore +++ b/packages/react-output-target/.gitignore @@ -4,4 +4,6 @@ dist/ .DS_Store Thumbs.db UserInterfaceState.xcuserstate -.env \ No newline at end of file +.env + +README.md \ No newline at end of file diff --git a/packages/react-output-target/package.json b/packages/react-output-target/package.json index 8270f10..962883c 100644 --- a/packages/react-output-target/package.json +++ b/packages/react-output-target/package.json @@ -1,12 +1,19 @@ { "name": "@stencil-community/react-output-target", - "version": "0.0.2", + "version": "0.0.3", + "description": "React component wrappers for Stencil web components", "license": "MIT", - "homepage": "https://github.com/stencil-community/stencil-react-output-target#README", - "author": "Sean Perkins ", + "homepage": "https://github.com/stencil-community/stencil-react-output-target", + + "repository": { + "type": "git", + "url": "https://github.com/stencil-community/stencil-react-output-target", + "directory": "packages/react-output-target" + }, "scripts": { "dev": "vite", - "build": "vite build && vue-tsc --emitDeclarationOnly && cp ../../README.md dist/README.md", + "build": "vite build && vue-tsc --emitDeclarationOnly && pnpm copy:readme", + "copy:readme": "cp ../../README.md dist/README.md && cp ../../README.md .", "preview": "vite preview", "test": "vitest run", "test:watch": "vitest", @@ -33,9 +40,5 @@ "require": "./dist/stencil-react-output-target.umd.js" } }, - "repository": { - "type": "git", - "url": "https://github.com/stencil-community/stencil-react-output-target", - "directory": "packages/react-output-target" - } + "author": "Stencil Community" }