-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 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
{
"name": "@exortek/remix-express",
"version": "1.0.11",
"description": "Express server request handler for Remix",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"format": "prettier --write \"**/*.{js,json,ts}\"",
"test:tsd": "tsd types/",
"test:node": "node --watch ./test/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExorTek/remix-express.git"
},
"keywords": [
"remix",
"express",
"handler"
],
"author": "ExorTek - https://github.com/ExorTek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExorTek/remix-express/issues"
},
"homepage": "https://github.com/ExorTek/remix-express#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.9.2",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@remix-run/node": "^2.16.8"
},
"devDependencies": {
"@types/express": "^5.0.3",
"express": "^5.1.0",
"prettier": "^3.5.3",
"tsd": "^0.32.0",
"vite": "^6.3.5"
},
"files": [
"index.js",
"types"
]
}