-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 3.47 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "nextlove",
"version": "4.5.1",
"description": "Enhanced Next.js API types, OpenAPI generation and utilities.",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./generators": {
"types": "./generators/index.d.ts",
"default": "./generators/index.js"
},
"./exception-middleware": {
"types": "./nextjs-exception-middleware/index.d.ts",
"default": "./nextjs-exception-middleware/index.js"
}
},
"sideEffects": false,
"keywords": [
"nextjs",
"openapi",
"zod",
"api",
"typescript"
],
"homepage": "https://github.com/seamapi/nextlove",
"bugs": "https://github.com/seamapi/nextlove/issues",
"repository": "seamapi/nextlove",
"license": "MIT",
"author": {
"name": "Seam Labs, Inc.",
"email": "devops@getseam.com"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"nextlove": "bin.js"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"index.d.ts.map",
"generators",
"lib",
"nextjs-exception-middleware",
"types",
"with-route-spec",
"wrappers",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"typecheck": "tsc",
"pretest": "npm run typecheck",
"test": "ava",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "prettier --check \"**/*.{ts,tsx,md}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"preexample": "npm run build",
"example": "npm --prefix example test",
"example:install": "npm --prefix example install",
"example:openapi": "npm --prefix example run build:openapi",
"example:types": "npm --prefix example run build:type",
"example:routespecs": "npm --prefix example run build:routespecs",
"postversion": "git push --follow-tags",
"prebuild": "del 'index.d.ts*' 'index.js*' generators lib nextjs-exception-middleware types with-route-spec wrappers",
"postbuild": "node ./index.js"
},
"engines": {
"node": ">=22.12.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0 || ^22.0.0"
},
"packageManager": {
"name": "npm",
"version": "^11.0.0 || ^10.0.0"
}
},
"peerDependencies": {
"next": ">=12",
"prettier": "^2.0.0 || ^3.0.0",
"typescript": "^5.0.2",
"zod": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"@seamapi/url-search-params-parser": "^1.0.0",
"@types/js-yaml": "^4.0.9",
"chalk": "^5.3.0",
"dedent": "^1.5.1",
"esbuild": "^0.25.0",
"globby": "^13.2.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"openapi3-ts": "^4.4.0",
"ts-morph": "^21.0.1",
"tsx": "^4.19.0"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.0",
"@types/prettier": "^2.7.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/sinon": "^10.0.20",
"ava": "^5.3.1",
"del-cli": "^7.0.0",
"eslint": "^9.0.0",
"eslint-config-custom": "*",
"eslint-config-next": "^16.0.0",
"expect-type": "^0.15.0",
"next": "^16.0.0",
"prettier": "^2.7.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^25.0.8",
"sinon": "^15.2.0",
"ts-toolbelt": "^9.6.0",
"type-fest": "^3.1.0",
"zod": "^4.3.5"
}
}