-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "vercel-rust",
"version": "4.0.8",
"description": "Rust runtime for Vercel Functions.",
"homepage": "https://github.com/vercel-community/rust",
"repository": {
"type": "git",
"url": "https://github.com/vercel-community/rust.git"
},
"license": "MIT",
"main": "./dist/index",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/ && tsc --removeComments",
"prepare": "husky install",
"prepublishOnly": "tsc",
"test": "pnpm run build && jest",
"typecheck": "tsc --noEmit"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"@iarna/toml": "^2.2.5",
"execa": "5",
"lodash": "^4.17.21",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/ms": "^0.7.31",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@vercel/build-utils": "^7.11.0",
"@vercel/routing-utils": "^2.1.8",
"@vercel/style-guide": "^4.0.2",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"ms": "^2.1.3",
"node-fetch": "2.6.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.1",
"ts-jest": "^29.0.5",
"vercel": "^28.16.15"
}
}