-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
51
{
"name": "vite-node-api",
"version": "1.0.2-beta",
"description": "A Vite plugin for adding Node.js API routes to your Vite + Vue project. JSON-only, single-port backend and frontend, similar to Next.js API routes but for Vite.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"bench": "node benchmark/run.js",
"bench:server": "node benchmark/server.js"
},
"keywords": [
"vite",
"vue",
"node",
"api",
"plugin",
"backend",
"fullstack"
],
"author": "Syarwani (https://github.com/ibnushahraa)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ibnushahraa/vite-node-api.git"
},
"bugs": {
"url": "https://github.com/ibnushahraa/vite-node-api/issues"
},
"homepage": "https://github.com/ibnushahraa/vite-node-api#readme",
"dependencies": {
"esbuild": "^0.25.11",
"fast-glob": "^3.3.3",
"fast-json-parse": "^1.0.3",
"fast-json-stringify": "^6.1.1",
"mime-types": "^3.0.1"
},
"peerDependencies": {
"vite": ">=5.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"autocannon": "^8.0.0",
"jest": "^30.2.0"
}
}