-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) 路 1.34 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) 路 1.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hoa",
"version": "0.4.1",
"description": "A minimal web framework built on Web Standards",
"main": "./dist/cjs/hoa.cjs",
"type": "module",
"module": "./dist/esm/hoa.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/esm/hoa.mjs",
"require": "./dist/cjs/hoa.cjs",
"default": "./dist/esm/hoa.mjs"
}
},
"files": [
"dist",
"types",
"CHANGELOG.md"
],
"scripts": {
"lint": "eslint .",
"build": "tsdown",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepare": "husky"
},
"author": "nswbmw",
"license": "MIT",
"homepage": "https://hoa-js.com",
"repository": {
"type": "git",
"url": "git+https://github.com/hoa-js/hoa.git"
},
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"nodejs",
"deno",
"bun",
"cloudflare",
"serverless",
"lambda"
],
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"eslint": "9.39.2",
"globals": "17.1.0",
"husky": "9.1.7",
"jest": "30.2.0",
"neostandard": "0.12.2",
"tsdown": "0.20.1"
},
"engines": {
"node": ">=20"
}
}