-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "@jsse/fastify-shitty",
"type": "module",
"version": "1.0.0",
"private": false,
"description": "Plugin to make fastify shittier",
"author": "jessekrubin",
"license": "MIT",
"keywords": [
"fastify",
"plugin",
"fastify-plugin"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/fastify-shitty.js",
"require": "./dist/fastify-shitty.cjs"
}
},
"main": "dist/fastify-shitty.cjs",
"module": "dist/fastify-shitty.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist",
"package.json"
],
"scripts": {
"fmt": "prettier --write .",
"fmtc": "prettier --check .",
"test": "vitest run && pnpm run build && pnpm run lint",
"lint": "eslint .",
"build": "tsc --noEmit && tsdown --dts --clean && vitest --run",
"dev": "vitest",
"prepublish": "pnpm build"
},
"dependencies": {
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"@jsse/eslint-config": "^0.7.0",
"@jsse/tsconfig": "^0.4.0",
"@types/node": "^24.12.0",
"eslint": "^9.39.4",
"fastify": "^5.8.2",
"prettier": "^3.8.1",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}