Skip to content

Commit

Permalink
Merge pull request #49 from gadingnst/2.1.0
Browse files Browse the repository at this point in the history
package: fix package.json
  • Loading branch information
Gading Nasution authored Dec 17, 2022
2 parents c9d795e + 55b6be3 commit f191be9
Showing 1 changed file with 51 additions and 2 deletions.
53 changes: 51 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
{
"name": "swr-global-state",
"version": "2.1.0-preview",
"private": true,
"author": "Sutan Gading Fadhillah Nasution <[email protected]>",
"description": "Zero-setup & simple global state management for React Components",
"license": "MIT",
"private": false,
"workspaces": [
"apps/*",
"packages/*"
],
"main": "packages/swr-global-state/dist/index.js",
"typings": "packages/swr-global-state/dist/index.d.ts",
"module": "packages/swr-global-state/dist/swr-global-state.esm.js",
"homepage": "https://github.com/gadingnst/swr-global-state",
"repository": {
"type": "git",
"url": "git+https://github.com/gadingnst/swr-global-state.git"
},
"bugs": {
"url": "https://github.com/gadingnst/swr-global-state/issues"
},
"files": [
"packages/swr-global-state/dist"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
Expand All @@ -14,6 +31,10 @@
"test:coverage": "turbo run test:coverage",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"peerDependencies": {
"react": ">=17",
"swr": ">=2"
},
"devDependencies": {
"eslint-config-custom": "*",
"prettier": "latest",
Expand All @@ -22,5 +43,33 @@
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"keywords": [
"react",
"swr",
"hooks",
"javascript",
"typescript",
"global",
"state",
"cache",
"store",
"global-state",
"remote-state",
"global-state-management",
"react-state-management",
"state-management",
"state-manager",
"global-state-hooks",
"state-hooks",
"swr-state",
"swr-store",
"use-swr",
"use-store",
"client-state",
"react-utility",
"hooks-utility",
"redux-alternative",
"context-alternative"
]
}

0 comments on commit f191be9

Please sign in to comment.