-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
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
{
"name": "@remix-kit/react",
"version": "0.2.3",
"repository": "https://github.com/jrestall/remix-kit",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./setup": {
"import": "./dist/setup.mjs",
"require": "./dist/setup.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "unbuild",
"release": "pnpm publish"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react-swc": "^3.0.1",
"unbuild": "^1.0.2"
},
"dependencies": {
"@remix-kit/kit": "workspace:*",
"@vitejs/plugin-react-swc": "^3.0.1",
"colorette": "^2.0.19",
"fs-extra": "^11.1.0",
"magic-string": "^0.27.0",
"pathe": "^1.0.0",
"unplugin": "^1.0.1"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"engines": {
"node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}