-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "resso",
"version": "0.17.0",
"description": "The simplest React state manager",
"license": "MIT",
"keywords": [
"react",
"hooks",
"flux",
"redux",
"store",
"state",
"resso"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nanxiaobei/resso.git"
},
"author": "nanxiaobei <nanxiaobei@gmail.com>",
"homepage": "https://github.com/nanxiaobei/resso",
"bugs": "https://github.com/nanxiaobei/resso/issues",
"main": "dist/resso.cjs.js",
"module": "dist/resso.esm.js",
"types": "dist/resso.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"build": "rm -rf dist coverage && rollup -c --configPlugin @rollup/plugin-typescript"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@types/node": "^20.11.16",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@types/use-sync-external-store": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
}
}