@bernierllc/content-management-suite 0.4.0 → 0.6.0

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,25 +1,30 @@
1
1
  {
2
2
  "name": "@bernierllc/content-management-suite",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "description": "Comprehensive content management suite with editorial workflows, content types, and admin UI",
5
- "main": "dist/index.js",
6
- "module": "dist/index.esm.js",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.cjs",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./utils": {
15
+ "import": "./dist/utils.mjs",
16
+ "require": "./dist/utils.cjs",
17
+ "types": "./dist/utils.d.ts"
18
+ },
19
+ "./ui": {
20
+ "import": "./dist/ui.mjs",
21
+ "require": "./dist/ui.cjs",
22
+ "types": "./dist/ui.d.ts"
23
+ }
24
+ },
8
25
  "files": [
9
26
  "dist"
10
27
  ],
11
- "scripts": {
12
- "build": "tsup",
13
- "dev": "tsup --watch",
14
- "test": "jest",
15
- "test:run": "jest --passWithNoTests",
16
- "test:playwright": "playwright test",
17
- "lint": "eslint src --ext .ts,.tsx",
18
- "lint:fix": "eslint src --ext .ts,.tsx --fix",
19
- "type-check": "tsc --noEmit",
20
- "start": "node dist/index.js",
21
- "start:dev": "tsx src/index.ts"
22
- },
23
28
  "keywords": [
24
29
  "content",
25
30
  "management",
@@ -34,37 +39,35 @@
34
39
  "author": "Bernier LLC",
35
40
  "license": "UNLICENSED",
36
41
  "dependencies": {
37
- "@bernierllc/content-autosave-manager": "1.2.0",
38
- "@bernierllc/content-editorial-workflow": "0.1.4",
39
- "@bernierllc/content-soft-delete": "1.2.0",
40
- "@bernierllc/content-type-audio": "1.2.0",
41
- "@bernierllc/content-type-image": "1.2.0",
42
- "@bernierllc/content-type-registry": "1.3.0",
43
- "@bernierllc/content-type-text": "1.2.0",
44
- "@bernierllc/content-type-video": "1.2.0",
45
- "@bernierllc/content-workflow-ui": "0.1.5",
46
- "compression": "^1.7.4",
47
- "cors": "^2.8.5",
48
- "dotenv": "^16.3.0",
49
- "express": "^4.18.0",
50
- "helmet": "^7.0.0",
51
- "morgan": "^1.10.0",
52
- "uuid": "^9.0.0",
53
- "zod": "^3.22.0"
42
+ "zod": "^3.22.0",
43
+ "@bernierllc/content-autosave-manager": "1.2.2",
44
+ "@bernierllc/content-editorial-workflow": "0.1.6",
45
+ "@bernierllc/content-soft-delete": "1.2.2",
46
+ "@bernierllc/content-type-audio": "1.2.2",
47
+ "@bernierllc/content-type-image": "1.2.2",
48
+ "@bernierllc/content-type-registry": "1.3.2",
49
+ "@bernierllc/content-type-text": "1.2.2",
50
+ "@bernierllc/content-type-video": "1.2.2",
51
+ "@bernierllc/content-workflow-ui": "0.1.7"
52
+ },
53
+ "peerDependencies": {
54
+ "react": ">=18.0.0",
55
+ "react-dom": ">=18.0.0"
56
+ },
57
+ "peerDependenciesMeta": {
58
+ "react": {
59
+ "optional": true
60
+ },
61
+ "react-dom": {
62
+ "optional": true
63
+ }
54
64
  },
55
65
  "devDependencies": {
56
- "@types/compression": "^1.7.0",
57
- "@types/cors": "^2.8.0",
58
- "@types/express": "^4.17.0",
59
66
  "@types/jest": "^29.5.0",
60
- "@types/morgan": "^1.9.0",
61
- "@types/supertest": "^6.0.0",
62
- "@types/uuid": "^9.0.0",
63
67
  "@typescript-eslint/eslint-plugin": "^6.0.0",
64
68
  "@typescript-eslint/parser": "^6.0.0",
65
69
  "eslint": "^8.0.0",
66
70
  "jest": "^29.5.0",
67
- "supertest": "^7.0.0",
68
71
  "ts-jest": "^29.1.0",
69
72
  "tsup": "^7.0.0",
70
73
  "tsx": "^4.0.0",
@@ -74,8 +77,17 @@
74
77
  "node": ">=18.0.0"
75
78
  },
76
79
  "publishConfig": {
77
- "access": "restricted",
80
+ "access": "public",
78
81
  "registry": "https://registry.npmjs.org/"
79
82
  },
80
- "gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
81
- }
83
+ "scripts": {
84
+ "build": "tsup",
85
+ "dev": "tsup --watch",
86
+ "test": "jest",
87
+ "test:run": "jest --passWithNoTests",
88
+ "test:playwright": "playwright test",
89
+ "lint": "eslint src --ext .ts,.tsx",
90
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
91
+ "type-check": "tsc --noEmit"
92
+ }
93
+ }
package/dist/server.d.mts DELETED
@@ -1 +0,0 @@
1
- #!/usr/bin/env node
package/dist/server.d.ts DELETED
@@ -1 +0,0 @@
1
- #!/usr/bin/env node