-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@triyanox/next-routes",
"description": "You will never have broken links in your Next.js app again",
"version": "0.1.5",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/triyanox/next-routes.git"
},
"bugs": {
"url": "https://github.com/triyanox/next-routes/issues"
},
"homepage": "https://github.com/triyanox/next-routes",
"main": "dist/index.js",
"author": {
"name": "Mohamed Achaq",
"email": "hi@achaq.dev",
"url": "https://achaq.dev"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --ext .ts,.tsx src",
"build": "tsup src/index.ts --dts",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"version": "changeset version"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"next": "^14.0.4",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.5.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"license": "MIT",
"keywords": [
"next",
"nextjs",
"routes",
"next-routes",
"nextjs-routes",
"nextjs-router",
"next-router",
"nextjs-link",
"next-app-directory",
"nextjs-links",
"nextjs-link"
]
}