-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 990 Bytes
/
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
{
"name": "@medici-uy/emails",
"version": "0.0.11",
"description": "Email templates.",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"dev": "email dev --dir src/templates --port 3001",
"build": "swc src --out-dir dist --copy-files src/templates --strip-leading-paths",
"prebuild": "rm --recursive --force dist",
"postbuild": "npm run tsc",
"check": "biome check --write",
"tsc": "tsc",
"test": "node --test"
},
"dependencies": {
"@medici-uy/js-shared": "0.1.0",
"@react-email/components": "0.0.31",
"@react-email/render": "1.0.3",
"debug": "4.4.0",
"react": "19.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.1",
"@types/debug": "4.1.12",
"@types/react": "19.0.1",
"react-email": "3.0.4",
"typescript": "5.7.2"
},
"types": "dist/index.d.ts",
"author": "Diego Stratta <[email protected]>",
"repository": "[email protected]:medici-uy/emails.git",
"license": "AGPL-3.0-or-later"
}