-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.43 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
{
"name": "@minsgy/msw-devtools",
"version": "0.1.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"
},
"dependencies": {
"@codemirror/autocomplete": "^6.16.2",
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.0",
"@faker-js/faker": "^8.4.1",
"@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",
"@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-json-schema": "^0.7.8",
"codemirror-json5": "^1.0.3",
"constate": "^3.3.2",
"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.1.6"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"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",
"pnpm": ">=9.0.6"
}
}