kimesh 0.1.0-nightly.20260120063147

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 ADDED
@@ -0,0 +1,3 @@
1
+ # kimesh
2
+
3
+ Part of the [Kimesh](https://github.com/kimesh/kimesh) framework.
package/bin/kimesh.mjs ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ // CLI wrapper - delegates to @kimesh/cli
4
+ // Similar to Nuxt's bin/nuxt.mjs pattern
5
+ import '@kimesh/cli/cli'
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "kimesh",
3
+ "version": "0.1.0-nightly.20260120063147",
4
+ "description": "Kimesh - Vue.js Framework",
5
+ "type": "module",
6
+ "bin": {
7
+ "kimesh": "./bin/kimesh.mjs",
8
+ "km": "./bin/kimesh.mjs"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ },
15
+ "./kit": {
16
+ "types": "./dist/kit.d.ts",
17
+ "import": "./dist/kit.js"
18
+ },
19
+ "./config": {
20
+ "types": "./dist/config.d.ts",
21
+ "import": "./dist/config.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "bin",
26
+ "dist"
27
+ ],
28
+ "scripts": {
29
+ "build": "tsdown",
30
+ "dev": "tsdown --watch"
31
+ },
32
+ "dependencies": {
33
+ "@kimesh/cli": "0.1.0-nightly.20260120063147",
34
+ "@kimesh/kit": "0.1.0-nightly.20260120063147",
35
+ "@kimesh/router-runtime": "0.1.0-nightly.20260120063147",
36
+ "@kimesh/query": "0.1.0-nightly.20260120063147",
37
+ "@kimesh/head": "0.1.0-nightly.20260120063147"
38
+ },
39
+ "peerDependencies": {
40
+ "vite": "^6.0.0",
41
+ "vue": "^3.5.0"
42
+ },
43
+ "devDependencies": {
44
+ "tsdown": "^0.11.4",
45
+ "typescript": "^5.8.3"
46
+ }
47
+ }