-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.15 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
{
"name": "quickwire",
"version": "0.9.0",
"description": "Automatic API generator for Next.js applications that creates API routes and TypeScript client functions from backend functions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"quickwire": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepare": "npm run build"
},
"keywords": [
"nextjs",
"api-generator",
"typescript",
"code-generation",
"api-routes",
"fullstack",
"prisma",
"react"
],
"author": "Ashraf P",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ashrafbinahmad/quickwire.git"
},
"bugs": {
"url": "https://github.com/ashrafbinahmad/quickwire/issues"
},
"homepage": "https://ashrafbinahmad.github.io/quickwire",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"next": ">=13.0.0",
"typescript": ">=4.0.0"
},
"dependencies": {
"axios": "^1.11.0",
"chokidar": "^4.0.3",
"turbo": "^2.5.6"
},
"devDependencies": {
"@types/node": "^20.0.0"
}
}