-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.97 KB
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
{
"name": "immer-external-store",
"version": "0.0.7",
"description": "A tiny faster easier react state manager, based immer and useSyncExternalStore, provide two kinds of selector and friendly typescript support.",
"module": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -w -c rollup.config.ts --configPlugin typescript",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"test": "jest --passWithNoTests",
"prerelease": "standard-version --prerelease",
"release": "standard-version"
},
"author": "wangzishun",
"license": "MIT",
"dependencies": {
"immer": ">=9.0",
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/use-sync-external-store": "^0.0.3",
"immer": "^9.0.19",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"keywords": [
"react",
"state",
"manager",
"immer",
"external",
"store",
"状态管理"
],
"bugs": {
"url": "https://github.com/wangzishun/immer-external-store/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wangzishun/immer-external-store"
}
}