This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.6 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
{
"name": "@augu/fastify-nitro",
"description": "🐻❄️⚗️ Experimental Nitro preset to export a Nitro server as middleware for fastify",
"version": "1.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/auguwu/nitro-preset",
"bugs": "https://github.com/auguwu/nitro-preset/issues",
"packageManager": "[email protected]",
"files": [
"./dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "yarn fmt && yarn lint && rimraf build && tsup",
"lint": "tsx --tsconfig ./scripts/tsconfig.json scripts/eslint.ts",
"fmt": "prettier --write **/*.{ts,js,md,json,yml,yaml} --config ./.prettierrc.json"
},
"dependencies": {
"@noelware/utils": "2.5.1",
"nitropack": "2.9.7"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@augu/eslint-config": "5.2.4",
"@augu/tsconfig": "1.2.0",
"@types/eslint": "8.56.10",
"@types/node": "20.14.9",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"log-symbols": "6.0.0",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"signale": "1.4.0",
"tsup": "8.1.0",
"tsx": "3.12.7",
"typescript": "5.5.2"
},
"peerDependencies": {
"fastify": "4.x"
}
}