-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.41 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
{
"name": "vite-plugin-remix",
"version": "0.2.4",
"type": "module",
"description": "A Vite plugin for integrating the Remix framework while maintaining Vite's functionalities.",
"keywords": [
"vite",
"vite-plugin",
"remix",
"remix-run",
"remix-framework",
"ssr",
"react",
"react-router",
"remix-dev",
"integration",
"web-development"
],
"files": [
"dist",
"client.d.ts",
"release.txt",
"logo.svg",
"LICENSE"
],
"license": "MIT",
"author": "Willyams Yujra <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/yracnet/vite-plugin-remix"
},
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./client": {
"types": "./client.d.ts"
}
},
"homepage": "https://github.com/yracnet/vite-plugin-remix",
"bugs": "https://github.com/yracnet/vite-plugin-remix/issues",
"scripts": {
"build": "tsup"
},
"dependencies": {
"esbuild": "^0.19.2"
},
"peerDependencies": {},
"devDependencies": {
"@remix-run/dev": "^1.19.3",
"@types/express": "^4.17.17",
"@types/node": "^20.5.9",
"express": "^4.18.2",
"slash-path": "^0.0.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}