-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "sentry-zustand-middleware",
"version": "4.3.0",
"description": "Zustand middleware to log state and actions on Sentry",
"keywords": [
"middleware",
"sentry",
"zustand"
],
"repository": {
"type": "git",
"url": "https://github.com/Thanaen/sentry-zustand-middleware"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "npm run build",
"test": "vitest run",
"prepare": "husky install",
"lint": "run-p lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint-fix": "run-p lint-fix:*",
"lint-fix:eslint": "eslint --fix .",
"lint-fix:prettier": "prettier --write ."
},
"author": "Thanaen",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^2.1.4"
},
"peerDependencies": {
"@sentry/browser": ">= 7.87.0",
"zustand": ">= 4.1.3"
},
"packageManager": "[email protected]+sha512.98a80fd11c2e7096747762304106432b3ddc67dcf54b5a8c01c93f68a2cd5e05e6821849522a06fb76284d41a2660d5e334f2ee3bbf29183bf2e739b1dafa771"
}