vite-plugin-norg 0.1.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 ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "author": "Drake Bott",
3
+ "license": "MIT",
4
+ "homepage": "https://github.com/bottd/vite-plugin-norg#README",
5
+ "name": "vite-plugin-norg",
6
+ "version": "0.1.0",
7
+ "type": "module",
8
+ "description": "A Vite plugin for processing Norg files with WASM-compiled Rust parser",
9
+ "main": "dist/plugin/index.js",
10
+ "types": "dist/plugin/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/plugin/index.d.ts",
14
+ "import": "./dist/plugin/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "pkg"
20
+ ],
21
+ "scripts": {
22
+ "build": "npm run build:wasm && npm run build:js",
23
+ "build:wasm": "wasm-pack build --target web .",
24
+ "build:js": "vite build",
25
+ "clean": "rimraf dist wasm pkg target/wasm32-unknown-unknown",
26
+ "lint": "eslint .",
27
+ "lint:fix": "eslint . --fix",
28
+ "check": "tsc --noEmit",
29
+ "test": "vitest run"
30
+ },
31
+ "keywords": [
32
+ "vite",
33
+ "plugin",
34
+ "norg",
35
+ "neorg",
36
+ "wasm",
37
+ "rust",
38
+ "svelte",
39
+ "react"
40
+ ],
41
+ "peerDependencies": {
42
+ "vite": "^5.0.0 || ^6.0.0"
43
+ },
44
+ "devDependencies": {
45
+ "@eslint/js": "^9.17.0",
46
+ "@rollup/plugin-typescript": "^12.1.3",
47
+ "@types/node": "^20.19.1",
48
+ "eslint": "^9.17.0",
49
+ "eslint-config-prettier": "^9.1.0",
50
+ "globals": "^16.2.0",
51
+ "prettier": "^3.4.2",
52
+ "rimraf": "^6.0.1",
53
+ "typescript": "~5.8.3",
54
+ "typescript-eslint": "^8.18.2",
55
+ "vite": "^6.3.5",
56
+ "vite-plugin-dts": "^4.5.4",
57
+ "vite-plugin-top-level-await": "^1.5.0",
58
+ "vite-plugin-wasm": "^3.4.1",
59
+ "vitest": "^3.2.4"
60
+ },
61
+ "repository": {
62
+ "type": "git",
63
+ "url": "git+https://github.com/bottd/vite-plugin-norg.git"
64
+ },
65
+ "engines": {
66
+ "node": ">=20.0.0"
67
+ },
68
+ "dependencies": {
69
+ "zod": "^3.25.67"
70
+ }
71
+ }