@i18n-micro/vitepress 1.0.1

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 ADDED
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "@i18n-micro/vitepress",
3
+ "version": "1.0.1",
4
+ "description": "VitePress bindings for i18n-micro — runtime dictionaries, MD components, and locale switcher.",
5
+ "keywords": [
6
+ "i18n",
7
+ "internationalization",
8
+ "translations",
9
+ "vitepress",
10
+ "vue",
11
+ "documentation"
12
+ ],
13
+ "homepage": "https://github.com/s00d/nuxt-i18n-micro/tree/main/packages/vitepress#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/s00d/nuxt-i18n-micro/issues"
16
+ },
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/s00d/nuxt-i18n-micro.git",
21
+ "directory": "packages/vitepress"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "client.d.ts",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "type": "module",
30
+ "sideEffects": false,
31
+ "main": "./dist/index.cjs",
32
+ "types": "./dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "import": {
36
+ "types": "./dist/index.d.ts",
37
+ "default": "./dist/index.mjs"
38
+ },
39
+ "require": {
40
+ "types": "./dist/index.d.cts",
41
+ "default": "./dist/index.cjs"
42
+ },
43
+ "default": "./dist/index.mjs"
44
+ },
45
+ "./config": {
46
+ "import": {
47
+ "types": "./dist/config.d.ts",
48
+ "default": "./dist/config.mjs"
49
+ },
50
+ "require": {
51
+ "types": "./dist/config.d.cts",
52
+ "default": "./dist/config.cjs"
53
+ },
54
+ "default": "./dist/config.mjs"
55
+ },
56
+ "./client": {
57
+ "types": "./client.d.ts"
58
+ },
59
+ "./node": {
60
+ "import": {
61
+ "types": "./dist/node.d.ts",
62
+ "default": "./dist/node.mjs"
63
+ },
64
+ "require": {
65
+ "types": "./dist/node.d.cts",
66
+ "default": "./dist/node.cjs"
67
+ },
68
+ "default": "./dist/node.mjs"
69
+ },
70
+ "./package.json": "./package.json"
71
+ },
72
+ "publishConfig": {
73
+ "access": "public"
74
+ },
75
+ "dependencies": {
76
+ "@i18n-micro/core": "^1.3.13",
77
+ "@i18n-micro/types": "^1.2.11",
78
+ "@i18n-micro/utils": "^1.0.14",
79
+ "@i18n-micro/vue": "^1.3.11"
80
+ },
81
+ "devDependencies": {
82
+ "@types/node": "^20.19.26",
83
+ "publint": "^0.3.17",
84
+ "typescript": "^5.9.3",
85
+ "vite": "^7.3.6",
86
+ "vite-plugin-dts": "^4.5.4",
87
+ "vitepress": "^2.0.0-alpha.19",
88
+ "vitest": "^4.1.10",
89
+ "vue": "^3.5.25"
90
+ },
91
+ "peerDependencies": {
92
+ "vitepress": ">=1.0.0 || >=2.0.0-alpha.0",
93
+ "vue": "^3.5.25"
94
+ },
95
+ "engines": {
96
+ "node": ">=18"
97
+ },
98
+ "scripts": {
99
+ "build": "vite build",
100
+ "check:package": "publint",
101
+ "test": "vitest run",
102
+ "typecheck": "tsc --noEmit",
103
+ "playground:dev": "vitepress dev playground",
104
+ "playground:build": "vitepress build playground"
105
+ }
106
+ }