-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.71 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": "next-ssr-middleware",
"version": "0.8.9",
"license": "LGPL-3.0-or-later",
"author": "[email protected]",
"description": "Koa-like middlewares for Next.js Server Side Rendering",
"keywords": [
"koa",
"middleware",
"nextjs",
"ssr"
],
"homepage": "https://idea2app.github.io/Next-SSR-middleware/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/Next-SSR-middleware.git"
},
"bugs": {
"url": "https://github.com/idea2app/Next-SSR-middleware/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"jsonwebtoken": "^9.0.2",
"tslib": "^2.8.1",
"web-utility": "^4.4.1"
},
"peerDependencies": {
"mobx-i18n": ">=0.5 <1",
"next": ">=9.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.17.6",
"husky": "^9.1.6",
"koajax": "^3.0.3",
"lint-staged": "^15.2.10",
"mobx-i18n": "^0.6.0",
"next": "^15.0.2",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typescript": "~5.6.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"build": "rm -rf dist/ docs/ && typedoc source/ && tsc",
"start": "typedoc && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
}