-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.21 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
{
"name": "1jm-cli",
"version": "0.0.9",
"description": "Full-stack framework with Hono + Vite React for Vercel on Bun runtime",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"bin": {
"1jm": "./dist/bin/cli.js",
"1jm-cli": "./dist/bin/cli.js"
},
"files": [
"dist/",
"templates/"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qwertyczee/1jm-app.git"
},
"bugs": {
"url": "https://github.com/qwertyczee/1jm-app/issues"
},
"homepage": "https://github.com/qwertyczee/1jm-app#readme",
"keywords": [
"hono",
"vite",
"react",
"bun",
"vercel",
"framework"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/bun": "^1.3.5",
"bun-plugin-tailwind": "^0.1.2",
"prompts": "^2.4.2",
"ts-morph": "^27.0.2",
"vite": "^7.3.1"
},
"peerDependencies": {
"hono": "^4.11.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3"
}
}