vite-plugin-norg 0.1.0 → 1.0.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/README.md +161 -9
- package/dist/plugin/index.d.ts +4 -8
- package/dist/plugin/index.js +1317 -2628
- package/dist/plugin/plugin.d.ts +1 -1
- package/dist/plugin/wasm.d.ts +0 -1
- package/dist/vite_plugin_norg_parser-koOTkJLR.js +170 -0
- package/package.json +32 -33
- package/dist/vite_plugin_norg_parser-CNE0aFue.js +0 -183
package/package.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"homepage": "https://github.com/bottd/vite-plugin-norg#README",
|
|
5
5
|
"name": "vite-plugin-norg",
|
|
6
|
-
"version": "
|
|
6
|
+
"version": "1.0.0",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"description": "A Vite plugin for
|
|
8
|
+
"description": "A Vite plugin for rendering Norg files",
|
|
9
9
|
"main": "dist/plugin/index.js",
|
|
10
10
|
"types": "dist/plugin/index.d.ts",
|
|
11
11
|
"exports": {
|
|
@@ -14,10 +14,7 @@
|
|
|
14
14
|
"import": "./dist/plugin/index.js"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"pkg"
|
|
20
|
-
],
|
|
17
|
+
"files": ["dist", "pkg"],
|
|
21
18
|
"scripts": {
|
|
22
19
|
"build": "npm run build:wasm && npm run build:js",
|
|
23
20
|
"build:wasm": "wasm-pack build --target web .",
|
|
@@ -28,35 +25,37 @@
|
|
|
28
25
|
"check": "tsc --noEmit",
|
|
29
26
|
"test": "vitest run"
|
|
30
27
|
},
|
|
31
|
-
"keywords": [
|
|
32
|
-
"vite",
|
|
33
|
-
"plugin",
|
|
34
|
-
"norg",
|
|
35
|
-
"neorg",
|
|
36
|
-
"wasm",
|
|
37
|
-
"rust",
|
|
38
|
-
"svelte",
|
|
39
|
-
"react"
|
|
40
|
-
],
|
|
28
|
+
"keywords": ["vite", "plugin", "norg", "neorg", "wasm", "rust", "svelte", "react"],
|
|
41
29
|
"peerDependencies": {
|
|
42
|
-
"vite": "^
|
|
30
|
+
"vite": "^7.0.0"
|
|
31
|
+
},
|
|
32
|
+
"peerDependenciesMeta": {
|
|
33
|
+
"svelte": {
|
|
34
|
+
"optional": true
|
|
35
|
+
},
|
|
36
|
+
"react": {
|
|
37
|
+
"optional": true
|
|
38
|
+
}
|
|
43
39
|
},
|
|
44
40
|
"devDependencies": {
|
|
45
|
-
"@eslint/js": "
|
|
46
|
-
"@rollup/plugin-typescript": "
|
|
47
|
-
"@types/node": "
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"vite
|
|
59
|
-
"
|
|
41
|
+
"@eslint/js": "9.30.1",
|
|
42
|
+
"@rollup/plugin-typescript": "12.1.4",
|
|
43
|
+
"@types/node": "20.19.1",
|
|
44
|
+
"@types/react": "19.1.8",
|
|
45
|
+
"react": "19.1.0",
|
|
46
|
+
"svelte": "5.35.6",
|
|
47
|
+
"eslint": "9.30.1",
|
|
48
|
+
"eslint-config-prettier": "10.1.5",
|
|
49
|
+
"globals": "16.3.0",
|
|
50
|
+
"prettier": "3.6.2",
|
|
51
|
+
"rimraf": "6.0.1",
|
|
52
|
+
"typescript": "5.8.3",
|
|
53
|
+
"typescript-eslint": "8.36.0",
|
|
54
|
+
"vite": "7.0.4",
|
|
55
|
+
"vite-plugin-dts": "4.5.4",
|
|
56
|
+
"vite-plugin-top-level-await": "1.5.0",
|
|
57
|
+
"vite-plugin-wasm": "3.5.0",
|
|
58
|
+
"vitest": "3.2.4"
|
|
60
59
|
},
|
|
61
60
|
"repository": {
|
|
62
61
|
"type": "git",
|
|
@@ -66,6 +65,6 @@
|
|
|
66
65
|
"node": ">=20.0.0"
|
|
67
66
|
},
|
|
68
67
|
"dependencies": {
|
|
69
|
-
"zod": "
|
|
68
|
+
"zod": "4.0.5"
|
|
70
69
|
}
|
|
71
70
|
}
|