@infuro/cms-core 1.0.23 → 1.0.25

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,129 +1,130 @@
1
- {
2
- "name": "@infuro/cms-core",
3
- "version": "1.0.23",
4
- "private": false,
5
- "type": "module",
6
- "main": "./dist/index.cjs",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
9
- "description": "Infuro CMS core - headless CMS library for Next.js",
10
- "license": "AGPL-3.0",
11
- "bin": {
12
- "infuro-cms": "./dist/cli.js"
13
- },
14
- "files": [
15
- "dist",
16
- "src/admin/admin.css"
17
- ],
18
- "exports": {
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.js",
22
- "require": "./dist/index.cjs"
23
- },
24
- "./hooks": {
25
- "types": "./dist/hooks.d.ts",
26
- "import": "./dist/hooks.js",
27
- "require": "./dist/hooks.cjs"
28
- },
29
- "./api": {
30
- "types": "./dist/api.d.ts",
31
- "import": "./dist/api.js",
32
- "require": "./dist/api.cjs"
33
- },
34
- "./auth": {
35
- "types": "./dist/auth.d.ts",
36
- "import": "./dist/auth.js",
37
- "require": "./dist/auth.cjs"
38
- },
39
- "./admin": {
40
- "types": "./dist/admin.d.ts",
41
- "import": "./dist/admin.js",
42
- "require": "./dist/admin.cjs"
43
- },
44
- "./theme": {
45
- "types": "./dist/theme.d.ts",
46
- "import": "./dist/theme.js",
47
- "require": "./dist/theme.cjs"
48
- },
49
- "./admin.css": "./src/admin/admin.css"
50
- },
51
- "scripts": {
52
- "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsup && shx mkdir -p dist/migrations && shx cp -r src/migrations/. dist/migrations/",
53
- "dev": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsup --watch",
54
- "link": "npm run build && npm link",
55
- "prepublishOnly": "npm run build",
56
- "migration:run": "cross-env TYPEORM_CLI=1 tsx -r dotenv/config node_modules/typeorm/cli.js migration:run -d src/scripts/migration-datasource.cjs",
57
- "migration:revert": "cross-env TYPEORM_CLI=1 tsx -r dotenv/config node_modules/typeorm/cli.js migration:revert -d src/scripts/migration-datasource.cjs",
58
- "test:chat-agent": "tsx -r dotenv/config scripts/test-chat-agent.ts"
59
- },
60
- "peerDependencies": {
61
- "@craftjs/core": ">=0.2.0",
62
- "next": ">=14.0.0",
63
- "next-auth": "^4.24.11",
64
- "react": ">=18.0.0",
65
- "react-dom": ">=18.0.0",
66
- "typeorm": ">=0.3.20"
67
- },
68
- "devDependencies": {
69
- "@craftjs/core": "^0.2.12",
70
- "@types/adm-zip": "^0.5.5",
71
- "@types/node": "^22",
72
- "@types/nodemailer": "^6.4.0",
73
- "@types/papaparse": "^5.3.14",
74
- "@types/react": "19.0.8",
75
- "cross-env": "^7.0.3",
76
- "dotenv": "^16.4.5",
77
- "next": "^15.5.13",
78
- "next-auth": "^4.24.11",
79
- "react": "19.0.1",
80
- "react-dom": "19.0.1",
81
- "shx": "^0.3.4",
82
- "tsup": "^8.0.0",
83
- "tsx": "^4.19.2",
84
- "typeorm": "^0.3.20",
85
- "typescript": "^5.3.3"
86
- },
87
- "dependencies": {
88
- "@aws-sdk/client-s3": "^3.858.0",
89
- "@aws-sdk/client-ses": "^3.858.0",
90
- "@huggingface/inference": "^4.13.15",
91
- "@radix-ui/react-avatar": "^1.1.10",
92
- "@radix-ui/react-checkbox": "^1.3.2",
93
- "@radix-ui/react-dialog": "^1.1.6",
94
- "@radix-ui/react-dropdown-menu": "^2.1.6",
95
- "@radix-ui/react-label": "^2.1.2",
96
- "@radix-ui/react-progress": "^1.1.2",
97
- "@radix-ui/react-radio-group": "^1.3.7",
98
- "@radix-ui/react-select": "^2.1.6",
99
- "@radix-ui/react-separator": "^1.1.2",
100
- "@radix-ui/react-slot": "^1.1.2",
101
- "@radix-ui/react-switch": "^1.1.3",
102
- "@radix-ui/react-tooltip": "^1.1.8",
103
- "adm-zip": "^0.5.16",
104
- "bcryptjs": "^3.0.3",
105
- "bullmq": "^5.34.0",
106
- "chart.js": "^4.5.0",
107
- "class-variance-authority": "^0.7.1",
108
- "clsx": "^2.1.1",
109
- "fastq": "^1.20.0",
110
- "googleapis": "^154.1.0",
111
- "ioredis": "^5.7.0",
112
- "jodit": "^4.6.2",
113
- "jodit-react": "^5.2.19",
114
- "lru-cache": "^11.0.0",
115
- "lucide-react": "^0.476.0",
116
- "next-themes": "^0.2.1",
117
- "nodemailer": "^8.0.2",
118
- "papaparse": "^5.4.1",
119
- "pdf-parse": "^1.1.1",
120
- "pg": "^8.20.0",
121
- "razorpay": "^2.9.6",
122
- "react-chartjs-2": "^5.3.0",
123
- "reflect-metadata": "^0.2.2",
124
- "sonner": "^2.0.6",
125
- "stripe": "^20.4.1",
126
- "tailwind-merge": "^3.0.2",
127
- "tslib": "^2.8.1"
128
- }
129
- }
1
+ {
2
+ "name": "@infuro/cms-core",
3
+ "version": "1.0.25",
4
+ "private": false,
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "description": "Infuro CMS core - headless CMS library for Next.js",
10
+ "license": "AGPL-3.0",
11
+ "bin": {
12
+ "infuro-cms": "./dist/cli.js"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "src/admin/admin.css"
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js",
22
+ "require": "./dist/index.cjs"
23
+ },
24
+ "./hooks": {
25
+ "types": "./dist/hooks.d.ts",
26
+ "import": "./dist/hooks.js",
27
+ "require": "./dist/hooks.cjs"
28
+ },
29
+ "./api": {
30
+ "types": "./dist/api.d.ts",
31
+ "import": "./dist/api.js",
32
+ "require": "./dist/api.cjs"
33
+ },
34
+ "./auth": {
35
+ "types": "./dist/auth.d.ts",
36
+ "import": "./dist/auth.js",
37
+ "require": "./dist/auth.cjs"
38
+ },
39
+ "./admin": {
40
+ "types": "./dist/admin.d.ts",
41
+ "import": "./dist/admin.js",
42
+ "require": "./dist/admin.cjs"
43
+ },
44
+ "./theme": {
45
+ "types": "./dist/theme.d.ts",
46
+ "import": "./dist/theme.js",
47
+ "require": "./dist/theme.cjs"
48
+ },
49
+ "./admin.css": "./src/admin/admin.css"
50
+ },
51
+ "scripts": {
52
+ "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsup && shx mkdir -p dist/migrations && shx cp -r src/migrations/. dist/migrations/",
53
+ "dev": "cross-env NODE_OPTIONS=--max-old-space-size=8192 tsup --watch",
54
+ "link": "npm run build && npm link",
55
+ "prepublishOnly": "npm run build",
56
+ "migration:run": "cross-env TYPEORM_CLI=1 tsx -r dotenv/config node_modules/typeorm/cli.js migration:run -d src/scripts/migration-datasource.cjs",
57
+ "migration:revert": "cross-env TYPEORM_CLI=1 tsx -r dotenv/config node_modules/typeorm/cli.js migration:revert -d src/scripts/migration-datasource.cjs",
58
+ "test:chat-agent": "tsx -r dotenv/config scripts/test-chat-agent.ts"
59
+ },
60
+ "peerDependencies": {
61
+ "@craftjs/core": ">=0.2.0",
62
+ "next": ">=14.0.0",
63
+ "next-auth": "^4.24.11",
64
+ "react": ">=18.0.0",
65
+ "react-dom": ">=18.0.0",
66
+ "typeorm": ">=0.3.20"
67
+ },
68
+ "devDependencies": {
69
+ "@craftjs/core": "^0.2.12",
70
+ "@types/adm-zip": "^0.5.5",
71
+ "@types/node": "^22",
72
+ "@types/nodemailer": "^6.4.0",
73
+ "@types/papaparse": "^5.3.14",
74
+ "@types/react": "19.0.8",
75
+ "cross-env": "^7.0.3",
76
+ "dotenv": "^16.4.5",
77
+ "next": "^15.5.13",
78
+ "next-auth": "^4.24.11",
79
+ "react": "19.0.1",
80
+ "react-dom": "19.0.1",
81
+ "shx": "^0.3.4",
82
+ "tsup": "^8.0.0",
83
+ "tsx": "^4.19.2",
84
+ "typeorm": "^0.3.20",
85
+ "typescript": "^5.3.3"
86
+ },
87
+ "dependencies": {
88
+ "@aws-sdk/client-s3": "^3.858.0",
89
+ "@aws-sdk/client-ses": "^3.858.0",
90
+ "@huggingface/inference": "^4.13.15",
91
+ "@radix-ui/react-avatar": "^1.1.10",
92
+ "@radix-ui/react-checkbox": "^1.3.2",
93
+ "@radix-ui/react-dialog": "^1.1.6",
94
+ "@radix-ui/react-dropdown-menu": "^2.1.6",
95
+ "@radix-ui/react-label": "^2.1.2",
96
+ "@radix-ui/react-progress": "^1.1.2",
97
+ "@radix-ui/react-radio-group": "^1.3.7",
98
+ "@radix-ui/react-select": "^2.1.6",
99
+ "@radix-ui/react-separator": "^1.1.2",
100
+ "@radix-ui/react-slot": "^1.1.2",
101
+ "@radix-ui/react-switch": "^1.1.3",
102
+ "@radix-ui/react-tooltip": "^1.1.8",
103
+ "adm-zip": "^0.5.16",
104
+ "bcryptjs": "^3.0.3",
105
+ "bullmq": "^5.34.0",
106
+ "chart.js": "^4.5.0",
107
+ "class-variance-authority": "^0.7.1",
108
+ "clsx": "^2.1.1",
109
+ "country-state-city": "^3.2.1",
110
+ "fastq": "^1.20.0",
111
+ "googleapis": "^154.1.0",
112
+ "ioredis": "^5.7.0",
113
+ "jodit": "^4.6.2",
114
+ "jodit-react": "^5.2.19",
115
+ "lru-cache": "^11.0.0",
116
+ "lucide-react": "^0.476.0",
117
+ "next-themes": "^0.2.1",
118
+ "nodemailer": "^8.0.2",
119
+ "papaparse": "^5.4.1",
120
+ "pdf-parse": "^1.1.1",
121
+ "pg": "^8.20.0",
122
+ "razorpay": "^2.9.6",
123
+ "react-chartjs-2": "^5.3.0",
124
+ "reflect-metadata": "^0.2.2",
125
+ "sonner": "^2.0.6",
126
+ "stripe": "^20.4.1",
127
+ "tailwind-merge": "^3.0.2",
128
+ "tslib": "^2.8.1"
129
+ }
130
+ }