Add dist with package.json

master
Auri 2021-08-07 01:57:05 -07:00
parent c309574049
commit 06ab00fc36
2 changed files with 19 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
node_modules/
dist/
dist/*
!dist/package.json

18
dist/package.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
"version": "0.1.1",
"name": "vibin-hooks",
"author": "Auri <me@auri.xyz>",
"description": "Absolutely vibin' hooks for (P)React.",
"homepage": "https://github.com/Aurailus/vibin-hooks",
"license": "MIT",
"main": "./Main.js",
"typings": "./Main.d.ts",
"scripts": {
"start": "echo 'This is the distributed package, please download the source from https://github.com/Aurailus/useful-hooks to develop useful-hooks!'",
"dev": "npm start",
"build": "npm start"
},
"peerDependencies": {
"react": "^16"
}
}