-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "@exortek/remix-fastify",
"version": "1.0.4",
"description": "Fastify server plugin for Remix",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"format": "prettier --write \"**/*.{js,json,ts}\"",
"test:tsd": "tsd",
"test:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExorTek/remix-fastify.git"
},
"keywords": [
"remix",
"fastify",
"plugin"
],
"author": "ExorTek - https://github.com/ExorTek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExorTek/remix-fastify/issues"
},
"homepage": "https://github.com/ExorTek/remix-fastify#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@fastify/middie": "^9.0.2",
"@fastify/static": "^8.0.3",
"@remix-run/node": "^2.15.1",
"fastify-plugin": "^5.0.1",
"vite": "^6.0.3"
},
"devDependencies": {
"fastify": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"tsd": "^0.31.2"
},
"files": [
"index.js",
"types"
]
}