-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.79 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
{
"name": "create-prisma",
"version": "0.4.1",
"private": false,
"description": "Create Prisma 7 projects with first-party templates and great DX.",
"homepage": "https://github.com/prisma/create-prisma",
"bugs": {
"url": "https://github.com/prisma/create-prisma/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/prisma/create-prisma"
},
"bin": {
"create-prisma": "dist/cli.mjs"
},
"files": [
"dist",
"templates",
"README.md",
"CHANGELOG.md"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./cli": {
"import": "./dist/cli.mjs"
}
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"start": "bun run ./dist/cli.mjs",
"check": "bun run format:check && bun run lint",
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"typecheck": "tsc --noEmit",
"bump": "bun run scripts/bump-version.ts",
"release": "bun run bump",
"release-notes": "bunx changelogithub"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"@orpc/server": "^1.13.5",
"execa": "^9.6.1",
"fs-extra": "^11.3.3",
"handlebars": "^4.7.8",
"posthog-node": "^5.28.2",
"trpc-cli": "^0.12.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.3.0",
"changelogithub": "^14.0.0",
"oxfmt": "^0.37.0",
"oxlint": "^1.52.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=18.0.0"
},
"packageManager": "bun@1.3.9"
}