@bernierllc/email-admin-suite 0.1.7 → 0.1.10

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.
Files changed (1) hide show
  1. package/package.json +20 -21
package/package.json CHANGED
@@ -1,24 +1,10 @@
1
1
  {
2
2
  "name": "@bernierllc/email-admin-suite",
3
- "version": "0.1.7",
3
+ "version": "0.1.10",
4
4
  "description": "Complete email administration suite with UI components, templates, scheduling, and analytics management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
- "scripts": {
9
- "build": "tsc",
10
- "dev": "tsc --watch",
11
- "test": "jest",
12
- "test:run": "jest --passWithNoTests",
13
- "test:watch": "jest --watch",
14
- "test:coverage": "jest --coverage",
15
- "lint": "eslint src/**/*.{ts,tsx}",
16
- "lint:fix": "eslint src/**/*.{ts,tsx} --fix",
17
- "clean": "rimraf dist",
18
- "prebuild": "npm run clean",
19
- "storybook": "storybook dev -p 6007",
20
- "build-storybook": "storybook build"
21
- },
22
8
  "keywords": [
23
9
  "email",
24
10
  "admin",
@@ -33,8 +19,6 @@
33
19
  "author": "Bernier LLC",
34
20
  "license": "Bernier LLC",
35
21
  "dependencies": {
36
- "@bernierllc/email-manager": "0.4.0",
37
- "@bernierllc/email-ui": "0.1.2",
38
22
  "@headlessui/react": "^1.7.0",
39
23
  "@heroicons/react": "^2.0.0",
40
24
  "@tanstack/react-query": "^4.32.0",
@@ -44,7 +28,9 @@
44
28
  "react-dom": "^18.2.0",
45
29
  "react-query": "^3.39.0",
46
30
  "react-router-dom": "^6.15.0",
47
- "zod": "^3.22.4"
31
+ "zod": "^3.22.4",
32
+ "@bernierllc/email-manager": "0.6.1",
33
+ "@bernierllc/email-ui": "0.1.4"
48
34
  },
49
35
  "peerDependencies": {
50
36
  "react": "^18.0.0",
@@ -82,8 +68,21 @@
82
68
  "directory": "packages/suite/email-admin-suite"
83
69
  },
84
70
  "publishConfig": {
85
- "access": "restricted",
71
+ "access": "public",
86
72
  "registry": "https://registry.npmjs.org/"
87
73
  },
88
- "gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
89
- }
74
+ "scripts": {
75
+ "build": "tsc",
76
+ "dev": "tsc --watch",
77
+ "test": "jest",
78
+ "test:run": "jest --passWithNoTests",
79
+ "test:watch": "jest --watch",
80
+ "test:coverage": "jest --coverage",
81
+ "lint": "eslint src/**/*.{ts,tsx}",
82
+ "lint:fix": "eslint src/**/*.{ts,tsx} --fix",
83
+ "clean": "rimraf dist",
84
+ "prebuild": "npm run clean",
85
+ "storybook": "storybook dev -p 6007",
86
+ "build-storybook": "storybook build"
87
+ }
88
+ }