-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.08 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
{
"name": "tinyhttp-remix",
"version": "0.1.3",
"description": "tinyhttp Remix middleware.",
"author": {
"name": "Izzuddin Natsir"
},
"repository": {
"url": "https://github.com/izznatsir/tinyhttp-remix"
},
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js",
"import": "./dist/index.js"
}
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"build": "tsup",
"format": "prettier -uw .",
"prepare": "husky install"
},
"devDependencies": {
"@remix-run/node": "^2.2.0",
"@tinyhttp/app": "^2.2.1",
"@types/node": "^20.8.10",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@remix-run/node": "^2.2.0",
"@tinyhttp/app": "^2.2.1"
},
"prettier": {
"trailingComma": "es5",
"useTabs": true
},
"lint-staged": {
"*": "prettier -uw"
},
"tsup": {
"dts": true,
"entry": [
"src/index.ts"
],
"format": [
"esm"
],
"minify": true,
"outdir": "dist",
"sourcemap": true
}
}