-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.95 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
{
"name": "create-lv48-app",
"version": "0.17.0",
"description": "Opinionated monorepo scaffold for TS-first SaaS: React/Vite, Astro, Hono",
"license": "MIT",
"type": "module",
"keywords": [
"create",
"initializer",
"scaffold",
"monorepo",
"typescript",
"saas",
"react",
"vite",
"astro",
"hono",
"tailwind",
"npm-init"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivan-gerasimov-1/create-lv48-app.git"
},
"homepage": "https://github.com/ivan-gerasimov-1/create-lv48-app#readme",
"bugs": {
"url": "https://github.com/ivan-gerasimov-1/create-lv48-app/issues"
},
"bin": "./dist/main.js",
"files": [
"dist",
"templates"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24.14",
"npm": ">=11"
},
"imports": {
"#/*": "./src/*.ts",
"#/templates/*": "./templates/*.ts",
"#/tests/*": "./tests/*.ts"
},
"scripts": {
"prebuild": "npm run build:typecheck",
"build": "tsdown",
"build:watch": "npm run build -- --watch",
"build:typecheck": "tsc --noEmit",
"dev": "concurrently --kill-others-on-fail --names build,types \"npm run build:watch\" \"npm run build:typecheck -- --watch --preserveWatchOutput\"",
"start": "npm run start:dev",
"start:dev": "node --watch dist/main.js",
"start:prod": "node dist/main.js",
"release:prepare": "npm run test && npm run build -- --publint",
"prepublishOnly": "npm run release:prepare",
"release:publish": "npm publish",
"test": "vitest run",
"test:watch": "vitest",
"deps:update": "ncu --upgrade --enginesNode --format group --reject @types/node"
},
"devDependencies": {
"@types/node": "24.6.1",
"concurrently": "9.2.1",
"npm-check-updates": "20.0.2",
"publint": "0.3.18",
"tsdown": "0.21.8",
"typescript": "6.0.2",
"vitest": "4.1.4"
},
"dependencies": {
"@clack/prompts": "1.2.0",
"zod": "4.3.6"
}
}