-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 949 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 949 Bytes
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
{
"name": "@solithix/drafts",
"version": "0.1.0",
"description": "Interactive CLI for scaffolding Solithix-flavored Next.js + Convex projects",
"type": "module",
"bin": {
"drafts": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"scaffold",
"nextjs",
"convex",
"solithix"
],
"author": "Solithix",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"execa": "^9.5.2",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.15.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}