generated from tinyhttp/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "@tinyhttp/cors",
"version": "2.0.1",
"type": "module",
"description": "CORS middleware for modern Node.js ",
"homepage": "https://github.com/tinyhttp/cors#readme",
"repository": {
"type": "git",
"url": "https://github.com/tinyhttp/cors.git"
},
"engines": {
"node": ">=12.20 || 14.x || >=16"
},
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"keywords": [
"tinyhttp",
"node.js",
"web framework",
"web",
"backend"
],
"author": "v1rtl",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "tsx --test src/*.test.ts",
"cov": "c8 -r lcov pnpm test",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@tinyhttp/app": "2.2.4",
"@types/node": "^20.14.10",
"c8": "^10.1.2",
"husky": "^9.0.11",
"supertest-fetch": "^2.0.0",
"tsx": "^4.16.2",
"typescript": "~5.5.3"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"dependencies": {
"@tinyhttp/vary": "^0.1.3"
}
}