-
Notifications
You must be signed in to change notification settings - Fork 747
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "@react-email/code-inline",
"version": "0.0.5",
"description": "Display a predictable inline code HTML element that works on all email clients",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist/**"],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"license": "MIT",
"scripts": {
"dev": "pnpm build --watch",
"clean": "rm -rf dist",
"build": "tsup src/index.ts --format esm,cjs --dts --external react"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^18.0 || ^19.0 || ^19.0.0-rc"
},
"devDependencies": {
"@react-email/render": "workspace:*",
"tsconfig": "workspace:*",
"tsup": "7.2.0",
"typescript": "5.1.6"
}
}