-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
59
60
61
62
63
64
65
{
"name": "hono-alibaba-cloud-fc3-adapter",
"version": "1.0.2",
"description": "An adapter for using Hono with Alibaba Cloud Function Compute 3.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsc",
"lint": "eslint --fix .",
"lint-check": "eslint . --no-fix",
"format": "prettier --write src",
"format-check": "prettier --check src",
"type-check": "tsc --noEmit",
"prepare": "husky",
"test": "vitest",
"coverage": "vitest --coverage"
},
"keywords": [
"hono",
"alibaba cloud",
"function compute",
"fc"
],
"author": "rwv",
"license": "MIT",
"repository": "https://github.com/rwv/hono-alibaba-cloud-fc3-adapter",
"homepage": "https://github.com/rwv/hono-alibaba-cloud-fc3-adapter",
"bugs": {
"url": "https://github.com/rwv/hono-alibaba-cloud-fc3-adapter/issues"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.15.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.3",
"@vitest/coverage-v8": "2.1.5",
"eslint": "^9.15.0",
"hono": "^4.6.12",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"peerDependencies": {
"hono": "^4.6.12"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write",
"vitest related --run"
]
}
}