-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.67 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "next-go-modules",
"version": "1.0.3",
"packageManager": "pnpm@10.14.0",
"description": "Next.js middleware for Go module hosting with dynamic routing and alias support",
"author": "诺墨 <normal@normalcoder.com> (https://normalcoder.com)",
"license": "MIT",
"homepage": "https://gitee.com/normalcoder/next-go-modules#readme",
"repository": {
"type": "git",
"url": "https://gitee.com/normalcoder/next-go-modules"
},
"bugs": {
"url": "https://gitee.com/normalcoder/next-go-modules/issues"
},
"keywords": [
"nextjs",
"middleware",
"go-modules",
"go-get",
"vercel",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"next-go-modules": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"commit": "cz",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"peerDependencies": {
"next": ">=13.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^20.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}