-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.73 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
{
"name": "quoteforge",
"version": "1.2.0",
"description": "Developer-native typographic card, carousel, and banner generator",
"type": "module",
"bin": {
"quoteforge": "./src/cli/index.ts",
"qf": "./src/cli/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit && tsc --noEmit -p studio",
"quoteforge": "bun run src/cli/index.ts",
"qf": "bun run src/cli/index.ts",
"build:binary": "bun run scripts/build-binaries.ts",
"preversion": "bun run typecheck && bun test",
"version": "bun run scripts/sync-site-version.ts && git add site/package.json",
"postversion": "git push --follow-tags origin HEAD",
"release:patch": "npm version patch -m \"chore(quoteforge[release]): bump version to %s\"",
"release:minor": "npm version minor -m \"chore(quoteforge[release]): bump version to %s\"",
"release:major": "npm version major -m \"chore(quoteforge[release]): bump version to %s\""
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@puppeteer/browsers": "^2.13.0",
"archiver": "^7.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"lucide-react": "^1.8.0",
"nunjucks": "^3.2.4",
"puppeteer-core": "^24.40.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/archiver": "^7.0.0",
"@types/node": "^25.6.0",
"@types/nunjucks": "^3.2.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"bun-types": "^1.3.12",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.8"
}
}