forked from luma-team/mjml-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 892 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
37
{
"name": "@luma-team/mjml-react",
"version": "0.2.1",
"license": "MIT",
"homepage": "https://github.com/luma-team/mjml-react",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"versionBumpStrategy": "patch"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"dev": "tsc --watch",
"tsc": "tsc --noEmit",
"pub": "./node_modules/.bin/tsc && npm version patch && npm publish"
},
"devDependencies": {
"@types/color": "^3.0.2",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"esbuild": "^0.12.15",
"prettier": "^2.3.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"color": "^3.1.3"
}
}