-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "asterix-elements-kit",
"version": "1.0.0",
"private": false,
"description": "Three business documents (invoice, business review, proposal) each rendered from one typed object into email, web and print via Unlayer Elements. Includes email-safe chart, QR and stamp custom tools that make zero external requests.",
"license": "MIT",
"type": "module",
"keywords": [
"unlayer",
"unlayer-elements",
"email-template",
"html-email",
"react-email",
"pdf",
"invoice",
"email-safe-charts"
],
"scripts": {
"build": "tsx scripts/build.ts",
"pdf": "tsx scripts/pdf.ts",
"shots": "tsx scripts/screenshots.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"preview": "next dev",
"preview:build": "next build",
"all": "npm run build && npm run pdf && npm run shots",
"shots:studio": "tsx scripts/studio-shot.ts",
"vercel-build": "tsx scripts/build.ts && tsx scripts/publish-static.ts && next build",
"publish:static": "tsx scripts/publish-static.ts"
},
"dependencies": {
"@unlayer/react-elements": "^0.1.20",
"qrcode-generator": "^2.0.4",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"jsqr": "^1.4.0",
"next": "^16.2.11",
"playwright": "^1.62.0",
"pngjs": "^7.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}