@slimlib/store 1.6.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -20
package/README.md CHANGED
@@ -65,7 +65,7 @@ function Component() {
65
65
  In store
66
66
 
67
67
  ```javascript
68
- import { createStore, useStore } from '@slimlib/store/svelte';
68
+ import { createStore } from '@slimlib/store/svelte';
69
69
 
70
70
  // create store
71
71
  const [state, subscribe] = createStore();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "type": "module",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "name": "@slimlib/store",
5
5
  "description": "Simple Proxy-based store for SPA",
6
6
  "license": "MIT",
@@ -75,20 +75,6 @@
75
75
  "store",
76
76
  "proxy"
77
77
  ],
78
- "devDependencies": {
79
- "@types/react": "^18.0.0",
80
- "preact": ">=10.0.0",
81
- "react": ">=17.0.0",
82
- "react-dom": ">=17.0.0",
83
- "@testing-library/react": "^14.0.0",
84
- "@testing-library/angular": "^14.0.0",
85
- "@types/react-dom": ">=17.0.0",
86
- "jest-environment-jsdom": "^29.4.3",
87
- "@testing-library/svelte": "^3.2.2",
88
- "svelte": "^3.55.1",
89
- "svelte-jester": "^2.3.2",
90
- "tslib": "^2.5.0"
91
- },
92
78
  "peerDependencies": {
93
79
  "preact": ">=10.0.0",
94
80
  "react": ">=17.0.0",
@@ -108,10 +94,5 @@
108
94
  "rxjs": {
109
95
  "optional": true
110
96
  }
111
- },
112
- "scripts": {
113
- "build": "pkgbld-internal --umd=index,preact,react,svelte,angular,rxjs",
114
- "test": "jest --collectCoverage",
115
- "lint": "eslint ./src"
116
97
  }
117
98
  }