-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "vercel-bash",
"version": "4.2.0",
"description": "Vercel Runtime for Bash serverless functions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Nathan Rajlich <nate@zeit.co>",
"license": "MIT",
"homepage": "https://github.com/importpw/vercel-bash",
"repository": {
"type": "git",
"url": "https://github.com/importpw/vercel-bash.git"
},
"files": [
"dist"
],
"scripts": {
"build": "./build.sh",
"now-build": "next build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"change-case": "^5.4.4",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.10.7",
"@types/node-fetch": "^2.6.12",
"@types/react": "^19.0.7",
"@vercel/build-utils": "^9.0.1",
"@vercel/frameworks": "^3.4.0",
"@vercel/routing-utils": "^5.0.0",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.5",
"next": "^15.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.3"
},
"pnpm": {
"overrides": {
"path-to-regexp@>=4.0.0 <6.3.0": ">=6.3.0"
}
}
}