-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@samsze/store",
"version": "1.1.2",
"description": "",
"author": "Sam Sze",
"license": "MIT",
"contributors": [
"Sam Sze (https://github.com/samsze0)"
],
"repository": {
"type": "git",
"url": "git+https://https://github.com/samsze0/store.git"
},
"files": [
"dist"
],
"keywords": [
"react",
"state",
"state management",
"redux",
"store",
"zustand",
"jotai",
"immer"
],
"homepage": "https://github.com/samsze0/store",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./dist/store.js",
"module": "./dist/store.mjs",
"types": "./dist/main.d.ts",
"scripts": {
"build": "vite build",
"test": "vitest --config ./vite.config.ts"
},
"dependencies": {
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/use-sync-external-store": "^0.0.5",
"jsdom": "^22.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.2",
"vite-plugin-externalize-deps": "^0.7.0",
"vitest": "^0.34.6"
},
"peerDependencies": {
"immer": ">=9.0",
"@types/react": ">=16.8",
"react": ">=16.8"
},
"peerDependenciesMeta": {
"immer": {
"optional": true
},
"@types/react": {
"optional": true
},
"react": {
"optional": true
}
}
}