@daisychainapp/maily-to-core 0.4.0 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@daisychainapp/maily-to-core",
3
3
  "type": "module",
4
- "version": "0.4.0",
4
+ "version": "0.4.2",
5
5
  "description": "Powerful editor for creating beautiful, pre-designed, mobile-ready emails.",
6
6
  "private": false,
7
7
  "main": "./dist/index.cjs",
@@ -123,6 +123,12 @@
123
123
  ]
124
124
  }
125
125
  },
126
+ "scripts": {
127
+ "dev": "tsup --watch",
128
+ "clean": "rm -rf dist",
129
+ "build": "tsup",
130
+ "postbuild": "node ./scripts/strip-layers.mjs"
131
+ },
126
132
  "repository": {
127
133
  "type": "git",
128
134
  "url": "git+https://github.com/arikchakma/maily.to.git",
@@ -185,20 +191,14 @@
185
191
  "postcss-replace": "^2.0.1",
186
192
  "tailwind-merge": "^3.3.0",
187
193
  "tailwind-scrollbar": "^4.0.2",
194
+ "tsconfig": "workspace:*",
188
195
  "tw-animate-css": "^1.3.6",
189
- "typescript": "^5.8.2",
190
- "tsconfig": "0.0.0"
196
+ "typescript": "^5.8.2"
191
197
  },
192
198
  "peerDependencies": {
193
199
  "react": "^18 || ^19"
194
200
  },
195
201
  "publishConfig": {
196
202
  "access": "public"
197
- },
198
- "scripts": {
199
- "dev": "tsup --watch",
200
- "clean": "rm -rf dist",
201
- "build": "tsup",
202
- "postbuild": "node ./scripts/strip-layers.mjs"
203
203
  }
204
- }
204
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- The MIT License
2
-
3
- Copyright (c) Arik Chakma
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.