forked from proofsh/proofkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@proofkit/cli",
"version": "2.0.0-beta.19",
"description": "Create web application with the ProofKit stack",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/proofgeist/proofkit.git",
"directory": "packages/cli"
},
"keywords": [
"proofkit",
"filemaker",
"ottomatic",
"proofgeist",
"next.js",
"typescript"
],
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"proofkit": "dist/index.js"
},
"files": [
"dist",
"template",
"README.md",
"index.d.ts",
"LICENSE",
"CHANGELOG.md",
"package.json"
],
"engines": {
"node": "^20.0.0 || ^22.0.0"
},
"scripts": {
"typecheck": "tsc",
"build": "NODE_ENV=production tsdown && publint --strict",
"prepublishOnly": "pnpm build",
"dev": "tsdown --watch",
"clean": "rm -rf dist .turbo node_modules",
"start": "node dist/index.js",
"lint": "biome check . --write",
"lint:summary": "biome check . --reporter=summary",
"release": "changeset version",
"pub:beta": "NODE_ENV=production pnpm build && npm publish --tag beta --access public",
"pub:next": "NODE_ENV=production pnpm build && npm publish --tag next --access public",
"pub:release": "NODE_ENV=production pnpm build && npm publish --access public",
"test": "vitest run"
},
"dependencies": {
"@better-fetch/fetch": "1.1.17",
"@clack/core": "^0.3.5",
"@clack/prompts": "^0.11.0",
"@proofkit/fmdapi": "workspace:*",
"@proofkit/typegen": "workspace:*",
"@types/glob": "^8.1.0",
"axios": "^1.13.2",
"chalk": "5.4.1",
"commander": "^14.0.2",
"dotenv": "^16.6.1",
"es-toolkit": "^1.43.0",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.3",
"glob": "^11.1.0",
"gradient-string": "^2.0.2",
"handlebars": "^4.7.8",
"jiti": "^1.21.7",
"jsonc-parser": "^3.3.1",
"open": "^10.2.0",
"ora": "6.3.1",
"randomstring": "^1.3.1",
"semver": "^7.7.3",
"shadcn": "^2.10.0",
"sort-package-json": "^2.15.1",
"ts-morph": "^26.0.0"
},
"devDependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"@auth/prisma-adapter": "^1.6.0",
"@biomejs/biome": "2.3.11",
"@libsql/client": "^0.6.2",
"@planetscale/database": "^1.19.0",
"@prisma/adapter-planetscale": "^5.22.0",
"@prisma/client": "^5.22.0",
"@proofkit/registry": "workspace:*",
"@rollup/plugin-replace": "^6.0.3",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.90.16",
"@trpc/client": "11.0.0-rc.441",
"@trpc/next": "11.0.0-rc.441",
"@trpc/react-query": "11.0.0-rc.441",
"@trpc/server": "11.0.0-rc.441",
"@types/axios": "^0.14.4",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.19.5",
"@types/randomstring": "^1.3.0",
"@types/react": "19.2.7",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^2.1.9",
"drizzle-kit": "^0.21.4",
"drizzle-orm": "^0.30.10",
"mysql2": "^3.16.0",
"next": "16.1.1",
"next-auth": "^4.24.13",
"postgres": "^3.4.8",
"prisma": "^5.22.0",
"publint": "^0.3.16",
"react": "19.2.3",
"react-dom": "19.2.3",
"superjson": "^2.2.6",
"tailwindcss": "^4.1.18",
"tsdown": "^0.14.2",
"type-fest": "^3.13.1",
"typescript": "^5.9.3",
"ultracite": "7.0.8",
"vitest": "^4.0.17",
"zod": "^4.3.5"
}
}