-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@minsgy/msw-devtools",
"version": "0.6.0",
"description": "MSW Devtools",
"author": "minsgy",
"license": "MIT",
"homepage": "https://github.com/minsgy/msw-devtools#readme",
"bugs": {
"url": "https://github.com/minsgy/msw-devtools/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/minsgy/msw-devtools.git"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./styles": "./dist/index.css"
},
"scripts": {
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"example": "pnpm build && cd example && pnpm i && pnpm dev",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|css|scss|md|json)\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"knip": "knip"
},
"dependencies": {
"@codemirror/autocomplete": "^6.16.2",
"@codemirror/commands": "^6.6.0",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.0",
"@faker-js/faker": "^8.4.1",
"@hookform/resolvers": "^3.6.0",
"@radix-ui/react-accordion": "1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toggle": "^1.0.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@uiw/codemirror-theme-github": "^4.22.1",
"@uiw/react-codemirror": "^4.22.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"codemirror-json5": "^1.0.3",
"constate": "^3.3.2",
"json5": "^2.2.3",
"lucide-react": "0.378.0",
"msw": "2.2.13",
"postcss": "^8.4.38",
"prettier": "^3.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.5",
"tailwind-merge": "2.3.0",
"tailwindcss-animate": "1.0.7",
"ts-pattern": "^5.1.2",
"typescript": "5.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-refresh": "^0.4.6",
"knip": "^5.18.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsup": "^7.1.0"
},
"peerDependencies": {
"msw": ">=2",
"react": ">=18",
"react-dom": ">=18"
},
"engines": {
"node": ">=20.11.1"
}
}