-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 668 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 668 Bytes
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
{
"name": "simple-proxy",
"private": true,
"version": "2.3.0",
"scripts": {
"prepare": "nitropack prepare",
"dev": "nitropack dev",
"build": "nitropack build",
"build:cloudflare": "NITRO_PRESET=cloudflare npm run build",
"build:node": "NITRO_PRESET=node-server npm run build",
"start": "node .output/server/index.mjs",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"fetch-cookie": "3.0.1",
"h3": "1.13.0",
"nitropack": "2.10.4",
"unenv": "1.10.0"
},
"devDependencies": {
"@rollup/wasm-node": "^4.28.1"
},
"pnpm": {
"overrides": {
"rollup": "npm:@rollup/wasm-node",
"tough-cookie": "npm:tough-cookie@5.0.0"
}
}
}