-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "zustand-async-slice",
"version": "1.0.5",
"description": "Zustand Utility For Creating Async Slice easily",
"homepage": "https://github.com/mym0404/zustand-async-slice",
"scripts": {
"t": "yarn lint --cache && yarn tsc --noEmit && yarn test",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"test": "jest --coverage",
"release": "zx tool/publish.mjs",
"build": "yarn tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/mym0404/zustand-async-slice"
},
"author": "MJ Studio <[email protected]>",
"license": "MIT",
"devDependencies": {
"@mj-studio/eslint-config-node": "^0.0.12",
"@types/jest": "^29.5.12",
"@types/react": "^18",
"eslint": "^8.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"ts-jest": "^29.1.2",
"typescript": "5.3.3",
"zustand": "^4.5.5"
},
"files": [
"dist"
],
"type": "module",
"packageManager": "[email protected]",
"main": "dist/index.js",
"typings": "dist/index.d.ts"
}