This commit is contained in:
cupcakearmy 2020-01-06 22:40:55 +01:00
commit 4f7354c78e

25
package.json Executable file
View File

@ -0,0 +1,25 @@
{
"name": "use-light-switch",
"version": "0.0.2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "rm -rf ./dist && tsc",
"build": "tsc",
"watch": "tsc -w"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions"
],
"peerDependencies": {
"react": "^16.8"
},
"devDependencies": {
"@types/react": "^16.8",
"react": "^16.8",
"react-dom": "^16.8",
"typescript": "^3.7"
}
}