-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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/vary",
"description": "vary rewrite in TypeScript and ESM",
"version": "0.1.3",
"type": "module",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.20"
},
"scripts": {
"prepare": "pnpm build",
"build": "tsup src/index.ts --minify-whitespace --format esm --dts",
"test": "tsm node_modules/uvu/bin.js test",
"test:coverage": "c8 --include=src pnpm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyhttp/vary.git"
},
"keywords": [
"http",
"esm",
"es",
"vary",
"nodejs",
"javascript"
],
"files": [
"dist"
],
"author": "v1rtl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tinyhttp/vary/issues"
},
"homepage": "https://github.com/tinyhttp/vary#readme",
"devDependencies": {
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"c8": "^8.0.1",
"tsm": "^2.3.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"uvu": "^0.5.6"
},
"publishConfig": {
"access": "public"
}
}