-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
{
"name": "vercel-bun",
"version": "0.0.0",
"description": "Bun runtime for ▲ Vercel Serverless Functions",
"keywords": [
"vercel",
"bun",
"serverless",
"runtime"
],
"type": "module",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"author": "Peter Bartha",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peterbartha/vercel-bun.git"
},
"bugs": {
"url": "https://github.com/peterbartha/vercel-bun/issues"
},
"homepage": "https://github.com/peterbartha/vercel-bun#readme",
"scripts": {
"build": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix && pnpm format",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"nano-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --max-warnings=0",
"prettier --write"
],
"**/*.{html,yaml,json,css,md,mdx}": [
"prettier --write"
]
},
"dependencies": {
"fflate": "^0.7.4",
"node-fetch": "^3.3.0"
}
}