@ditojs/server 2.30.3 → 2.31.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 +11 -12
- package/src/cli/db/createMigration.js +0 -0
- package/src/cli/db/seed.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ditojs/server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dito.js Server – Dito.js is a declarative and modern web framework, based on Objection.js, Koa.js and Vue.js",
|
|
6
6
|
"repository": "https://github.com/ditojs/dito/tree/master/packages/server",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"src/",
|
|
12
12
|
"types/"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"types": "tsc --noEmit --esModuleInterop ./types/index.d.ts"
|
|
16
|
+
},
|
|
14
17
|
"bin": {
|
|
15
18
|
"dito": "./src/cli/index.js"
|
|
16
19
|
},
|
|
@@ -22,10 +25,10 @@
|
|
|
22
25
|
"node >= 18"
|
|
23
26
|
],
|
|
24
27
|
"dependencies": {
|
|
25
|
-
"@ditojs/admin": "^2.
|
|
26
|
-
"@ditojs/build": "^2.
|
|
27
|
-
"@ditojs/router": "^2.
|
|
28
|
-
"@ditojs/utils": "^2.
|
|
28
|
+
"@ditojs/admin": "^2.31.0",
|
|
29
|
+
"@ditojs/build": "^2.31.0",
|
|
30
|
+
"@ditojs/router": "^2.31.0",
|
|
31
|
+
"@ditojs/utils": "^2.31.0",
|
|
29
32
|
"@koa/cors": "^5.0.0",
|
|
30
33
|
"@koa/multer": "^3.0.2",
|
|
31
34
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
@@ -60,7 +63,7 @@
|
|
|
60
63
|
"passthrough-counter": "^1.0.0",
|
|
61
64
|
"picocolors": "^1.0.0",
|
|
62
65
|
"picomatch": "^4.0.2",
|
|
63
|
-
"pino": "^
|
|
66
|
+
"pino": "^9.0.0",
|
|
64
67
|
"pino-pretty": "^11.0.0",
|
|
65
68
|
"pluralize": "^8.0.0",
|
|
66
69
|
"repl": "^0.1.3",
|
|
@@ -90,9 +93,5 @@
|
|
|
90
93
|
"typescript": "^5.4.5"
|
|
91
94
|
},
|
|
92
95
|
"types": "types",
|
|
93
|
-
"gitHead": "
|
|
94
|
-
|
|
95
|
-
"types": "tsc --noEmit --esModuleInterop ./types/index.d.ts"
|
|
96
|
-
},
|
|
97
|
-
"readme": "# Dito.js Server\n\nDito.js is a declarative and modern web framework with a focus on API driven\ndevelopment, based on Koa.js, Objection.js and Vue.js\n\nReleased in 2018 under the MIT license, with support by https://lineto.com/\n"
|
|
98
|
-
}
|
|
96
|
+
"gitHead": "65ab50e5cf1ca68cc7383963f16a8b73aa60a2ae"
|
|
97
|
+
}
|
|
File without changes
|
package/src/cli/db/seed.js
CHANGED
|
File without changes
|