dn-react-router-toolkit 0.3.2 → 0.3.3
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/README.md +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +123 -123
- package/tsup.config.ts +9 -9
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# Dndnsoft React Router Toolkit
|
|
1
|
+
# Dndnsoft React Router Toolkit
|
package/dist/index.d.mts
CHANGED
|
@@ -3,6 +3,6 @@ import 'dn-react-toolkit/file';
|
|
|
3
3
|
import 'dn-react-toolkit/http';
|
|
4
4
|
import 'dn-react-toolkit/modal';
|
|
5
5
|
import 'dn-react-toolkit/text_editor';
|
|
6
|
-
import 'dn-react-toolkit/file/server';
|
|
7
6
|
import 'dn-react-toolkit/auth/server';
|
|
8
7
|
import 'dn-react-toolkit/file/client';
|
|
8
|
+
import 'dn-react-toolkit/file/server';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import 'dn-react-toolkit/file';
|
|
|
3
3
|
import 'dn-react-toolkit/http';
|
|
4
4
|
import 'dn-react-toolkit/modal';
|
|
5
5
|
import 'dn-react-toolkit/text_editor';
|
|
6
|
-
import 'dn-react-toolkit/file/server';
|
|
7
6
|
import 'dn-react-toolkit/auth/server';
|
|
8
7
|
import 'dn-react-toolkit/file/client';
|
|
8
|
+
import 'dn-react-toolkit/file/server';
|
package/package.json
CHANGED
|
@@ -1,123 +1,123 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dn-react-router-toolkit",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"types": "./dist/index.d.ts",
|
|
5
|
-
"main": "./dist/index.mjs",
|
|
6
|
-
"module": "./dist/index.js",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.mjs",
|
|
11
|
-
"require": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./auth": {
|
|
14
|
-
"types": "./dist/auth/index.d.ts",
|
|
15
|
-
"import": "./dist/auth/index.mjs",
|
|
16
|
-
"require": "./dist/auth/index.js"
|
|
17
|
-
},
|
|
18
|
-
"./auth/server": {
|
|
19
|
-
"types": "./dist/auth/server/index.d.ts",
|
|
20
|
-
"import": "./dist/auth/server/index.mjs",
|
|
21
|
-
"require": "./dist/auth/server/index.js"
|
|
22
|
-
},
|
|
23
|
-
"./auth/client": {
|
|
24
|
-
"types": "./dist/auth/client/index.d.ts",
|
|
25
|
-
"import": "./dist/auth/client/index.mjs",
|
|
26
|
-
"require": "./dist/auth/client/index.js"
|
|
27
|
-
},
|
|
28
|
-
"./file": {
|
|
29
|
-
"types": "./dist/file/index.d.ts",
|
|
30
|
-
"import": "./dist/file/index.mjs",
|
|
31
|
-
"require": "./dist/file/index.js"
|
|
32
|
-
},
|
|
33
|
-
"./file/server": {
|
|
34
|
-
"types": "./dist/file/server/index.d.ts",
|
|
35
|
-
"import": "./dist/file/server/index.mjs",
|
|
36
|
-
"require": "./dist/file/server/index.js"
|
|
37
|
-
},
|
|
38
|
-
"./file/client": {
|
|
39
|
-
"types": "./dist/file/client/index.d.ts",
|
|
40
|
-
"import": "./dist/file/client/index.mjs",
|
|
41
|
-
"require": "./dist/file/client/index.js"
|
|
42
|
-
},
|
|
43
|
-
"./api": {
|
|
44
|
-
"types": "./dist/api/index.d.ts",
|
|
45
|
-
"import": "./dist/api/index.mjs",
|
|
46
|
-
"require": "./dist/api/index.js"
|
|
47
|
-
},
|
|
48
|
-
"./client": {
|
|
49
|
-
"types": "./dist/client/index.d.ts",
|
|
50
|
-
"import": "./dist/client/index.mjs",
|
|
51
|
-
"require": "./dist/client/index.js"
|
|
52
|
-
},
|
|
53
|
-
"./modal": {
|
|
54
|
-
"types": "./dist/modal/index.d.ts",
|
|
55
|
-
"import": "./dist/modal/index.mjs",
|
|
56
|
-
"require": "./dist/modal/index.js"
|
|
57
|
-
},
|
|
58
|
-
"./http": {
|
|
59
|
-
"types": "./dist/http/index.d.ts",
|
|
60
|
-
"import": "./dist/http/index.mjs",
|
|
61
|
-
"require": "./dist/http/index.js"
|
|
62
|
-
},
|
|
63
|
-
"./seo": {
|
|
64
|
-
"types": "./dist/seo/index.d.ts",
|
|
65
|
-
"import": "./dist/seo/index.mjs",
|
|
66
|
-
"require": "./dist/seo/index.js"
|
|
67
|
-
},
|
|
68
|
-
"./text_editor": {
|
|
69
|
-
"types": "./dist/text_editor/index.d.ts",
|
|
70
|
-
"import": "./dist/text_editor/index.mjs",
|
|
71
|
-
"require": "./dist/text_editor/index.js"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
"scripts": {
|
|
75
|
-
"build": "tsup",
|
|
76
|
-
"dev": "tsup --watch"
|
|
77
|
-
},
|
|
78
|
-
"repository": {
|
|
79
|
-
"type": "git",
|
|
80
|
-
"url": "git+https://github.com/dndnsoft/dn-react-router-toolkit.git"
|
|
81
|
-
},
|
|
82
|
-
"author": "",
|
|
83
|
-
"license": "MIT",
|
|
84
|
-
"bugs": {
|
|
85
|
-
"url": "https://github.com/dndnsoft/dn-react-router-toolkit/issues"
|
|
86
|
-
},
|
|
87
|
-
"homepage": "https://github.com/dndnsoft/dn-react-router-toolkit#readme",
|
|
88
|
-
"description": "",
|
|
89
|
-
"devDependencies": {
|
|
90
|
-
"@types/node": "^24.10.1",
|
|
91
|
-
"@types/nodemailer": "^7.0.4",
|
|
92
|
-
"@types/react": "^19",
|
|
93
|
-
"@types/react-dom": "^19",
|
|
94
|
-
"rimraf": "^6.0.1",
|
|
95
|
-
"schema-dts": "^1.1.5",
|
|
96
|
-
"tsup": "^8.5.1",
|
|
97
|
-
"typescript": "^5.7.3"
|
|
98
|
-
},
|
|
99
|
-
"dependencies": {
|
|
100
|
-
"@aws-sdk/client-s3": "^3.940.0",
|
|
101
|
-
"@aws-sdk/s3-request-presigner": "^3.940.0",
|
|
102
|
-
"bcryptjs": "^3.0.3",
|
|
103
|
-
"dn-react-toolkit": "0.2.
|
|
104
|
-
"jose": "^6.1.2",
|
|
105
|
-
"moment-timezone": "^0.6.0",
|
|
106
|
-
"nodemailer": "^7.0.11",
|
|
107
|
-
"prosemirror-commands": "^1.7.1",
|
|
108
|
-
"prosemirror-history": "^1.5.0",
|
|
109
|
-
"prosemirror-keymap": "^1.2.3",
|
|
110
|
-
"prosemirror-model": "^1.25.4",
|
|
111
|
-
"prosemirror-schema-list": "^1.5.1",
|
|
112
|
-
"prosemirror-state": "^1.4.4",
|
|
113
|
-
"prosemirror-view": "^1.41.3",
|
|
114
|
-
"react-icons": "^5.5.0",
|
|
115
|
-
"uuid": "^13.0.0"
|
|
116
|
-
},
|
|
117
|
-
"peerDependencies": {
|
|
118
|
-
"drizzle-orm": "^0.44",
|
|
119
|
-
"react": "^19",
|
|
120
|
-
"react-dom": "^19",
|
|
121
|
-
"react-router": "^7"
|
|
122
|
-
}
|
|
123
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dn-react-router-toolkit",
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"types": "./dist/index.d.ts",
|
|
5
|
+
"main": "./dist/index.mjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./auth": {
|
|
14
|
+
"types": "./dist/auth/index.d.ts",
|
|
15
|
+
"import": "./dist/auth/index.mjs",
|
|
16
|
+
"require": "./dist/auth/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./auth/server": {
|
|
19
|
+
"types": "./dist/auth/server/index.d.ts",
|
|
20
|
+
"import": "./dist/auth/server/index.mjs",
|
|
21
|
+
"require": "./dist/auth/server/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./auth/client": {
|
|
24
|
+
"types": "./dist/auth/client/index.d.ts",
|
|
25
|
+
"import": "./dist/auth/client/index.mjs",
|
|
26
|
+
"require": "./dist/auth/client/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./file": {
|
|
29
|
+
"types": "./dist/file/index.d.ts",
|
|
30
|
+
"import": "./dist/file/index.mjs",
|
|
31
|
+
"require": "./dist/file/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./file/server": {
|
|
34
|
+
"types": "./dist/file/server/index.d.ts",
|
|
35
|
+
"import": "./dist/file/server/index.mjs",
|
|
36
|
+
"require": "./dist/file/server/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./file/client": {
|
|
39
|
+
"types": "./dist/file/client/index.d.ts",
|
|
40
|
+
"import": "./dist/file/client/index.mjs",
|
|
41
|
+
"require": "./dist/file/client/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./api": {
|
|
44
|
+
"types": "./dist/api/index.d.ts",
|
|
45
|
+
"import": "./dist/api/index.mjs",
|
|
46
|
+
"require": "./dist/api/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./client": {
|
|
49
|
+
"types": "./dist/client/index.d.ts",
|
|
50
|
+
"import": "./dist/client/index.mjs",
|
|
51
|
+
"require": "./dist/client/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./modal": {
|
|
54
|
+
"types": "./dist/modal/index.d.ts",
|
|
55
|
+
"import": "./dist/modal/index.mjs",
|
|
56
|
+
"require": "./dist/modal/index.js"
|
|
57
|
+
},
|
|
58
|
+
"./http": {
|
|
59
|
+
"types": "./dist/http/index.d.ts",
|
|
60
|
+
"import": "./dist/http/index.mjs",
|
|
61
|
+
"require": "./dist/http/index.js"
|
|
62
|
+
},
|
|
63
|
+
"./seo": {
|
|
64
|
+
"types": "./dist/seo/index.d.ts",
|
|
65
|
+
"import": "./dist/seo/index.mjs",
|
|
66
|
+
"require": "./dist/seo/index.js"
|
|
67
|
+
},
|
|
68
|
+
"./text_editor": {
|
|
69
|
+
"types": "./dist/text_editor/index.d.ts",
|
|
70
|
+
"import": "./dist/text_editor/index.mjs",
|
|
71
|
+
"require": "./dist/text_editor/index.js"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsup",
|
|
76
|
+
"dev": "tsup --watch"
|
|
77
|
+
},
|
|
78
|
+
"repository": {
|
|
79
|
+
"type": "git",
|
|
80
|
+
"url": "git+https://github.com/dndnsoft/dn-react-router-toolkit.git"
|
|
81
|
+
},
|
|
82
|
+
"author": "",
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"bugs": {
|
|
85
|
+
"url": "https://github.com/dndnsoft/dn-react-router-toolkit/issues"
|
|
86
|
+
},
|
|
87
|
+
"homepage": "https://github.com/dndnsoft/dn-react-router-toolkit#readme",
|
|
88
|
+
"description": "",
|
|
89
|
+
"devDependencies": {
|
|
90
|
+
"@types/node": "^24.10.1",
|
|
91
|
+
"@types/nodemailer": "^7.0.4",
|
|
92
|
+
"@types/react": "^19",
|
|
93
|
+
"@types/react-dom": "^19",
|
|
94
|
+
"rimraf": "^6.0.1",
|
|
95
|
+
"schema-dts": "^1.1.5",
|
|
96
|
+
"tsup": "^8.5.1",
|
|
97
|
+
"typescript": "^5.7.3"
|
|
98
|
+
},
|
|
99
|
+
"dependencies": {
|
|
100
|
+
"@aws-sdk/client-s3": "^3.940.0",
|
|
101
|
+
"@aws-sdk/s3-request-presigner": "^3.940.0",
|
|
102
|
+
"bcryptjs": "^3.0.3",
|
|
103
|
+
"dn-react-toolkit": "0.2.1",
|
|
104
|
+
"jose": "^6.1.2",
|
|
105
|
+
"moment-timezone": "^0.6.0",
|
|
106
|
+
"nodemailer": "^7.0.11",
|
|
107
|
+
"prosemirror-commands": "^1.7.1",
|
|
108
|
+
"prosemirror-history": "^1.5.0",
|
|
109
|
+
"prosemirror-keymap": "^1.2.3",
|
|
110
|
+
"prosemirror-model": "^1.25.4",
|
|
111
|
+
"prosemirror-schema-list": "^1.5.1",
|
|
112
|
+
"prosemirror-state": "^1.4.4",
|
|
113
|
+
"prosemirror-view": "^1.41.3",
|
|
114
|
+
"react-icons": "^5.5.0",
|
|
115
|
+
"uuid": "^13.0.0"
|
|
116
|
+
},
|
|
117
|
+
"peerDependencies": {
|
|
118
|
+
"drizzle-orm": "^0.44",
|
|
119
|
+
"react": "^19",
|
|
120
|
+
"react-dom": "^19",
|
|
121
|
+
"react-router": "^7"
|
|
122
|
+
}
|
|
123
|
+
}
|
package/tsup.config.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { defineConfig } from "tsup";
|
|
2
|
-
|
|
3
|
-
export default defineConfig({
|
|
4
|
-
entry: ["src/**/*.ts", "src/**/*.tsx"], // Your entry file(s)
|
|
5
|
-
format: ["cjs", "esm"], // Output both CommonJS (.cjs) and ESM (.js/.mjs)
|
|
6
|
-
dts: true, // Generate .d.ts files for both formats
|
|
7
|
-
splitting: false,
|
|
8
|
-
clean: true, // Clean dist folder before build
|
|
9
|
-
});
|
|
1
|
+
import { defineConfig } from "tsup";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
entry: ["src/**/*.ts", "src/**/*.tsx"], // Your entry file(s)
|
|
5
|
+
format: ["cjs", "esm"], // Output both CommonJS (.cjs) and ESM (.js/.mjs)
|
|
6
|
+
dts: true, // Generate .d.ts files for both formats
|
|
7
|
+
splitting: false,
|
|
8
|
+
clean: true, // Clean dist folder before build
|
|
9
|
+
});
|