vite-plugin-norg 1.2.10 → 1.3.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "license": "MIT",
4
4
  "homepage": "https://github.com/bottd/vite-plugin-norg#README",
5
5
  "name": "vite-plugin-norg",
6
- "version": "1.2.10",
6
+ "version": "1.3.0",
7
7
  "type": "module",
8
8
  "description": "A Vite plugin for rendering Norg files",
9
9
  "main": "dist/plugin/index.js",
@@ -14,13 +14,13 @@
14
14
  "import": "./dist/plugin/index.js"
15
15
  },
16
16
  "./svelte": {
17
- "types": "./dist/plugin/svelte.d.ts"
17
+ "types": "./dist/plugin/generators/svelte.d.ts"
18
18
  },
19
19
  "./react": {
20
- "types": "./dist/plugin/react.d.ts"
20
+ "types": "./dist/plugin/generators/react.d.ts"
21
21
  },
22
22
  "./html": {
23
- "types": "./dist/plugin/html.d.ts"
23
+ "types": "./dist/plugin/generators/html.d.ts"
24
24
  }
25
25
  },
26
26
  "files": [
@@ -60,6 +60,10 @@
60
60
  },
61
61
  "devDependencies": {
62
62
  "@eslint/js": "9.39.1",
63
+ "@semantic-release/changelog": "6.0.3",
64
+ "@semantic-release/exec": "7.1.0",
65
+ "@semantic-release/npm": "13.1.2",
66
+ "@semantic-release/git": "10.0.1",
63
67
  "ajv": "8.17.1",
64
68
  "@napi-rs/cli": "3.5.0",
65
69
  "@rollup/plugin-typescript": "12.3.0",
@@ -69,13 +73,14 @@
69
73
  "eslint-config-prettier": "10.1.8",
70
74
  "globals": "16.5.0",
71
75
  "jiti": "2.6.1",
72
- "prettier": "3.7.3",
73
- "react": "19.2.0",
76
+ "prettier": "3.7.4",
77
+ "react": "19.2.1",
74
78
  "rimraf": "6.1.2",
75
- "shiki": "3.18.0",
76
- "svelte": "5.45.3",
79
+ "shiki": "3.19.0",
80
+ "svelte": "5.45.5",
77
81
  "typescript": "5.9.3",
78
82
  "typescript-eslint": "8.48.1",
83
+ "semantic-release": "25.0.2",
79
84
  "vite": "7.2.6",
80
85
  "vite-plugin-dts": "4.5.4",
81
86
  "vite-tsconfig-paths": "5.1.4"
@@ -85,6 +90,6 @@
85
90
  "url": "git+https://github.com/bottd/vite-plugin-norg.git"
86
91
  },
87
92
  "dependencies": {
88
- "zod": "^4.1.0"
93
+ "zod": "^4.1.13"
89
94
  }
90
95
  }
@@ -1,5 +0,0 @@
1
- declare module '*.norg' {
2
- import { HtmlModule } from 'vite-plugin-norg';
3
- export const metadata: HtmlModule['metadata'];
4
- export const html: HtmlModule['html'];
5
- }
@@ -1,5 +0,0 @@
1
- declare module '*.norg' {
2
- import { ReactModule } from 'vite-plugin-norg';
3
- export const metadata: ReactModule['metadata'];
4
- export const Component: ReactModule['Component'];
5
- }
@@ -1,6 +0,0 @@
1
- declare module '*.norg' {
2
- import { SvelteModule } from 'vite-plugin-norg';
3
- const component: SvelteModule['default'];
4
- export const metadata: SvelteModule['metadata'];
5
- export default component;
6
- }