-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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
{
"name": "create-sidebase",
"type": "module",
"version": "0.10.0",
"description": "The productive way to build fullstack Nuxt 3 applications, like create-t3-app but for Nuxt.",
"packageManager": "pnpm@10.7.1",
"engines": {
"pnpm": ">=10.7.0",
"node": ">=24.2.0"
},
"scripts": {
"dev": "vite-node src/ -- --nocounting",
"dev:ci": "vite-node src/ -- --ci",
"lint": "oxlint --deny-warnings -D correctness -D suspicious -D perf && eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0",
"lint:fix": "eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0 --fix",
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsdown src/index.ts --format esm",
"start": "npx .",
"prepack": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sidebase/create-sidebase"
},
"bin": {
"create-sidebase": "./dist/index.js"
},
"keywords": [
"sidebase",
"create-sidebase",
"nuxt",
"typescript",
"prisma",
"fullstack",
"tRPC",
"authentication"
],
"author": "sidestream-tech <sidebase@sidestream.tech>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sidebase/create-sidebase/issues/new/choose"
},
"homepage": "https://sidebase.io",
"devDependencies": {
"@antfu/eslint-config": "^6.0.0",
"@types/node": "^24.7.2",
"@types/prompts": "^2.4.9",
"eslint": "^9.37.0",
"oxlint": "^1.23.0",
"tsdown": "^0.15.7",
"typescript": "^5.9.3",
"vite-node": "^3.2.4"
},
"dependencies": {
"@nuxt/schema": "^4.1.3",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"consola": "^3.4.2",
"defu": "^6.1.4",
"execa": "^9.6.0",
"giget": "^2.0.0",
"node-fetch": "^3.3.0",
"ora": "^9.0.0",
"pkg-types": "^2.3.0",
"prompts": "^2.4.2"
}
}