Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ jobs:
- name: Publish new version
run: npm publish --access public
env:
NODE_AUTH_TOKEN: '${{secrets.NPM_AUTH_TOKEN}}'
NODE_AUTH_TOKEN: '${{secrets.NPM_AUTH_TOKEN}}'

- name: Publish to Storybook
run: |
npm run build-storybook
npm run deploy-storybook
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
<img src="./logo.svg" alt="react-image-annotator" />
</div>

# react-image-annotator

> Image Annotator Component for React Applications

[![NPM](https://img.shields.io/npm/v/@dansreis/react-image-annotator)](https://www.npmjs.com/package/@dansreis/react-image-annotator)
[![npm](https://img.shields.io/npm/dm/@dansreis/react-image-annotator)](https://www.npmjs.com/package/@dansreis/react-image-annotator)
[![Build Status](https://github.com/dansreis/react-image-annotator/actions/workflows/main.yml/badge.svg)](https://github.com/dansreis/react-image-annotator/actions)
![Github All Contributors](https://img.shields.io/github/all-contributors/dansreis/react-image-annotator)


## Features

Expand Down
208 changes: 208 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@dansreis/react-image-annotator",
"version": "0.0.1",
"homepage": "http://dansreis.github.io/react-image-annotator",
"version": "0.0.3",
"description": "",
"type": "module",
"main": "dist/index.cjs.js",
Expand All @@ -19,7 +20,8 @@
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npm run build"
"prepare": "npm run build",
"deploy-storybook": "gh-pages -d storybook-static"
},
"author": "Daniel Reis",
"license": "MIT",
Expand Down Expand Up @@ -50,6 +52,7 @@
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
Expand Down