-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
101 lines (101 loc) · 3.09 KB
/
package.json
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
{
"name": "@reliverse/cli",
"author": "reliverse",
"version": "1.5.12",
"type": "module",
"license": "MIT",
"keywords": ["cli"],
"description": "This CLI tool can help you easily create new web projects, manage existing projects, and automatically make advanced codebase modifications, with more features coming soon.",
"scripts": {
"dev": "bun src/main.ts cli --dev",
"dev:studio": "drizzle-kit studio",
"dev:logout": "bun src/main.ts logout",
"dev:schema": "bun src/main.ts schema",
"dev:rules": "bun src/main.ts rules --dev",
"dev:multireli": "bun src/main.ts multireli --dev",
"start": "bun src/main.ts cli --cwd start-runtime",
"pub": "bun build.publish.ts",
"latest": "bun latest.ts",
"test": "vitest",
"check": "tsc --noEmit && knip && eslint --cache --fix . && biome check --write ."
},
"dependencies": {
"@ai-sdk/openai": "^1.2.1",
"@libsql/client": "^0.14.0",
"@octokit/plugin-rest-endpoint-methods": "^13.3.1",
"@octokit/request-error": "^6.1.7",
"@octokit/rest": "^21.1.1",
"@reliverse/prompts": "^1.5.5",
"@reliverse/relico": "^1.0.1",
"@reliverse/runtime": "^1.0.2",
"@sinclair/typebox": "^0.34.29",
"@vercel/sdk": "^1.4.0",
"ai": "^4.1.54",
"async-listen": "^3.1.0",
"better-sqlite3": "^11.8.1",
"bun-types": "^1.2.4",
"confbox": "^0.2.1",
"destr": "^2.0.3",
"detect-package-manager": "^3.0.2",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.40.0",
"escape-string-regexp": "^5.0.0",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"jiti": "^2.4.2",
"jsdom": "^26.0.0",
"jsonrepair": "^3.12.0",
"lookpath": "^1.2.3",
"magic-string": "^0.30.17",
"magicast": "^0.3.5",
"mri": "^1.2.0",
"nanoid": "^5.1.3",
"nypm": "^0.6.0",
"octokit": "^4.1.2",
"ofetch": "^1.4.1",
"open": "^10.1.0",
"ora": "^8.2.0",
"p-limit": "^6.2.0",
"p-map": "^7.0.3",
"pathe": "^2.0.3",
"pkg-types": "^2.1.0",
"pretty-bytes": "^6.1.1",
"querystring": "^0.2.1",
"random-words": "^2.0.1",
"semver": "^7.7.1",
"simple-git": "^3.27.0",
"tar-stream": "^3.1.7",
"tinyglobby": "^0.2.12",
"uncrypto": "^0.1.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/js": "^9.22.0",
"@eslint/json": "^0.10.0",
"@eslint/markdown": "^6.3.0",
"@planetscale/database": "^1.19.0",
"@prisma/client": "^6.4.1",
"@stylistic/eslint-plugin": "^4.2.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/better-sqlite3": "^7.6.12",
"@types/bun": "^1.2.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/semver": "^7.5.8",
"@types/tar-stream": "^3.1.3",
"drizzle-kit": "^0.30.5",
"eslint": "^9.22.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-perfectionist": "^4.10.1",
"knip": "^5.45.0",
"mysql2": "^3.13.0",
"postgres": "^3.4.5",
"react": "^19.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"unbuild": "^3.5.0",
"vitest": "^3.0.8"
}
}