-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "next-endpoints",
"version": "0.8.1",
"description": "Never write a fetch call again",
"license": "MIT",
"author": "Isira Herath",
"repository": {
"type": "git",
"url": "git+https://github.com/SL-Pirate/next-endpoints.git"
},
"scripts": {
"build": "tsc",
"test": "tsc && cd example && pnpm next-endpoints generate"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./hooks/use-api-client": {
"import": "./dist/hooks/use-api-client.js",
"require": "./dist/hooks/use-api-client.js",
"types": "./dist/hooks/use-api-client.d.ts"
},
"./types": {
"import": "./dist/types.js",
"require": "./dist/types.js",
"types": "./dist/types.d.ts"
}
},
"bin": {
"next-endpoints": "dist/cli.js"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"typescript": "^5.9.2"
},
"dependencies": {
"next": "^15.5.2",
"react": "^19.1.1",
"ts-morph": "^26.0.0"
}
}