diff --git a/.gitignore b/.gitignore index 9308a4b..6e6d31c 100644 --- a/.gitignore +++ b/.gitignore @@ -320,6 +320,15 @@ TSWLatexianTemp* # xwatermark package *.xwm +# dependencies +node_modules/ + +# build output +dist/ + +# misc +*.tgz + # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib # option is specified. Footnotes are the stored in a file with suffix Notes.bib. # Uncomment the next line to have this generated file ignored. diff --git a/package.json b/package.json new file mode 100644 index 0000000..9bf5034 --- /dev/null +++ b/package.json @@ -0,0 +1,39 @@ +{ + "name": "@aossie/support-us-button", + "version": "1.0.0", + "description": "A customizable and flexible Support Us button component for integrating sponsorship and donation options into web applications.", + "keywords": [ + "aossie", + "support", + "donation", + "sponsor", + "button", + "widget", + "open-source" + ], + "homepage": "https://github.com/AOSSIE-Org/SupportUsButton#readme", + "bugs": { + "url": "https://github.com/AOSSIE-Org/SupportUsButton/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/AOSSIE-Org/SupportUsButton.git" + }, + "license": "GNU General Public License v3.0", + "author": "AOSSIE Organization", + "type": "module", + "main": "index.js", + "files": [ + "dist", + "index.js", + "README.md", + "LICENSE" + ], + "scripts": { + "test": "echo \"No tests specified\"", + "build": "echo \"Build step not configured yet\"" + }, + "engines": { + "node": ">=14" + } +} \ No newline at end of file