-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "next-safe-navigation",
"version": "0.3.3",
"author": "Luke Morales <[email protected]>",
"description": "Type-safe navigation for NextJS App router",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lukemorales/safe-next-navigation.git"
},
"bugs": {
"url": "https://github.com/lukemorales/safe-next-navigation/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "run-p build:*",
"build:tsup": "tsup --dts --minify",
"changeset": "changeset",
"clean": "rimraf dist",
"dev": "bun run test:coverage --ui",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts",
"lint:eslint:fix": "bun run lint:eslint --fix",
"lint:format": "prettier --check \"src/**/*.ts\"",
"lint:format:fix": "bun run lint:format --write",
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"test": "vitest --passWithNoTests",
"test:ci": "bun run test:coverage --run",
"test:coverage": "bun run test --coverage",
"prerelease": "run-p build test:ci",
"release": "changeset publish"
},
"trustedDependencies": [
"npm-run-all"
],
"eslintConfig": {
"extends": [
"lukemorales/oss",
"lukemorales/jest"
]
},
"prettier": "@lukemorales/prettier-config",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@lukemorales/prettier-config": "^1.1.0",
"@testing-library/react": "^14.2.2",
"@types/bun": "latest",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"eslint-config-lukemorales": "^0.4.1",
"jsdom": "^24.0.0",
"next": "^14.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^4.8.2",
"vitest": "^1.4.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"typescript": ">=4.8.2",
"next": ">=13.0.0",
"zod": ">=3.20.0"
},
"keywords": [
"next",
"nextjs",
"next.js",
"next-js",
"app router",
"app-router",
"vercel",
"typescript",
"type-safety",
"router",
"navigation",
"zod",
"runtime validation",
"validation"
]
}