-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "vite-plugin-server-actions",
"version": "0.1.1",
"description": "Automatically proxy imported backend functions to a server endpoint in Vite",
"keywords": [
"vite-plugin",
"server",
"actions"
],
"homepage": "https://github.com/HelgeSverre/vite-plugin-server-actions",
"bugs": {
"url": "https://github.com/HelgeSverre/vite-plugin-server-actions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HelgeSverre/vite-plugin-server-actions"
},
"license": "MIT",
"author": {
"name": "Helge Sverre",
"email": "[email protected]",
"url": "https://helgesver.re"
},
"type": "module",
"main": "src/index.js",
"scripts": {
"example:build": "npm run build --prefix examples/todo-app",
"example:dev": "npm run dev --prefix examples/todo-app",
"format": "npx prettier --write src/ README.md",
"sort": "npx sort-package-json"
},
"devDependencies": {
"express": "^4.21.0",
"prettier": "^3.3.3",
"vitest": "^0.34.0"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"readme": "README.md"
}