@unmail/react 0.1.0 → 0.1.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@unmail/react",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Unstyled components for creating beautiful emails with React",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",
@@ -22,47 +22,50 @@
22
22
  }
23
23
  }
24
24
  },
25
+ "scripts": {
26
+ "build": "tsdown src/index.ts --format esm,cjs --dts --external react --external react-dom --external prettier --external html-to-text --external tailwindcss --external css-tree --external marked",
27
+ "dev": "tsdown src/index.ts --format esm,cjs --dts --watch",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest"
30
+ },
25
31
  "peerDependencies": {
26
32
  "react": "^18.0.0 || ^19.0.0",
27
33
  "react-dom": "^18.0.0 || ^19.0.0"
28
34
  },
29
35
  "dependencies": {
30
36
  "html-to-text": "^9.0.5",
31
- "prettier": "^3.5.3"
37
+ "prettier": "^3.5.3",
38
+ "prismjs": "^1.30.0"
32
39
  },
33
40
  "optionalDependencies": {
34
- "tailwindcss": "^4.1.18",
35
41
  "css-tree": "^3.1.0",
36
- "marked": "^15.0.0"
42
+ "marked": "^15.0.0",
43
+ "tailwindcss": "^4.1.18"
37
44
  },
38
45
  "devDependencies": {
39
46
  "@types/css-tree": "^2.3.10",
40
47
  "@types/html-to-text": "^9.0.4",
48
+ "@types/prismjs": "^1.26.6",
41
49
  "@types/react": "^19.0.1",
42
50
  "@types/react-dom": "^19.0.1",
43
51
  "react": "^19.0.0",
44
52
  "react-dom": "^19.0.0",
45
- "tsconfig": "0.0.0"
53
+ "tsconfig": "workspace:*"
46
54
  },
47
55
  "publishConfig": {
48
56
  "access": "public"
49
57
  },
50
58
  "repository": {
51
59
  "type": "git",
52
- "url": "https://github.com/pfrfrh/unmail.git",
60
+ "url": "https://github.com/unmail/unmail",
53
61
  "directory": "packages/react"
54
62
  },
63
+ "homepage": "https://unmail.github.io/unmail/",
55
64
  "keywords": [
56
65
  "react",
57
66
  "email",
58
67
  "components",
59
68
  "tailwind",
60
69
  "unstyled"
61
- ],
62
- "scripts": {
63
- "build": "tsdown src/index.ts --format esm,cjs --dts --external react --external react-dom --external prettier --external html-to-text --external tailwindcss --external css-tree --external marked",
64
- "dev": "tsdown src/index.ts --format esm,cjs --dts --watch",
65
- "test": "vitest run",
66
- "test:watch": "vitest"
67
- }
68
- }
70
+ ]
71
+ }