kimesh 0.2.11 → 0.2.12
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 +17 -17
- package/types.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kimesh",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"description": "Kimesh - Vue.js Framework",
|
|
5
|
-
"type": "module",
|
|
6
5
|
"repository": {
|
|
7
6
|
"type": "git",
|
|
8
7
|
"url": "https://github.com/kimeshjs/kimesh.git"
|
|
@@ -11,6 +10,13 @@
|
|
|
11
10
|
"kimesh": "./bin/kimesh.mjs",
|
|
12
11
|
"km": "./bin/kimesh.mjs"
|
|
13
12
|
},
|
|
13
|
+
"files": [
|
|
14
|
+
"bin",
|
|
15
|
+
"dist",
|
|
16
|
+
"types.d.ts"
|
|
17
|
+
],
|
|
18
|
+
"type": "module",
|
|
19
|
+
"types": "./types.d.ts",
|
|
14
20
|
"exports": {
|
|
15
21
|
".": {
|
|
16
22
|
"types": "./dist/index.d.ts",
|
|
@@ -44,29 +50,23 @@
|
|
|
44
50
|
"import": "./dist/router-runtime-default-app.js"
|
|
45
51
|
}
|
|
46
52
|
},
|
|
47
|
-
"types": "./types.d.ts",
|
|
48
|
-
"files": [
|
|
49
|
-
"bin",
|
|
50
|
-
"dist",
|
|
51
|
-
"types.d.ts"
|
|
52
|
-
],
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "tsdown",
|
|
55
55
|
"dev": "tsdown --watch"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@kimesh/cli": "0.2.
|
|
59
|
-
"@kimesh/
|
|
60
|
-
"@kimesh/
|
|
61
|
-
"@kimesh/query": "0.2.
|
|
62
|
-
"@kimesh/
|
|
63
|
-
},
|
|
64
|
-
"peerDependencies": {
|
|
65
|
-
"vite": "^8.0.0-beta.8",
|
|
66
|
-
"vue": "^3.5.0"
|
|
58
|
+
"@kimesh/cli": "0.2.12",
|
|
59
|
+
"@kimesh/head": "0.2.12",
|
|
60
|
+
"@kimesh/kit": "0.2.12",
|
|
61
|
+
"@kimesh/query": "0.2.12",
|
|
62
|
+
"@kimesh/router-runtime": "0.2.12"
|
|
67
63
|
},
|
|
68
64
|
"devDependencies": {
|
|
69
65
|
"tsdown": "^0.11.4",
|
|
70
66
|
"typescript": "^5.8.3"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"vite": "^8.0.0-beta.8",
|
|
70
|
+
"vue": "^3.5.0"
|
|
71
71
|
}
|
|
72
72
|
}
|
package/types.d.ts
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* similar to how Nuxt provides global `defineNuxtConfig`.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import type { KimeshConfig } from
|
|
8
|
+
import type { KimeshConfig } from '@kimesh/kit'
|
|
9
9
|
|
|
10
|
-
export * from
|
|
10
|
+
export * from './dist/index'
|
|
11
11
|
|
|
12
12
|
declare global {
|
|
13
13
|
/**
|
|
@@ -23,11 +23,11 @@ declare global {
|
|
|
23
23
|
* })
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
|
-
const defineKmConfig: (config: KimeshConfig) => KimeshConfig
|
|
26
|
+
const defineKmConfig: (config: KimeshConfig) => KimeshConfig
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
29
|
* Alias for defineKmConfig
|
|
30
30
|
* @deprecated Use `defineKmConfig` instead
|
|
31
31
|
*/
|
|
32
|
-
const defineKimeshConfig: (config: KimeshConfig) => KimeshConfig
|
|
32
|
+
const defineKimeshConfig: (config: KimeshConfig) => KimeshConfig
|
|
33
33
|
}
|