@unterberg/nivel 0.0.6 → 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.
@@ -15,7 +15,7 @@ declare const parseMetaString: <Name extends string = string>(meta: unknown, pro
15
15
  declare const stripMetaProps: <Name extends string = string>(meta: unknown, propNames: Name[]) => string;
16
16
  declare const getCodeBlockPropsFromMeta: (meta: unknown) => {
17
17
  props: Record<string, string>;
18
- env: "server" | "client" | null;
18
+ env: "client" | "server" | null;
19
19
  title: string | null;
20
20
  };
21
21
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@unterberg/nivel",
3
- "version": "0.0.6",
3
+ "version": "0.1.0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/richard-unterberg/nivel.git",
8
+ "url": "git+https://github.com/richard-unterberg/nivel.git",
9
9
  "directory": "packages/engine"
10
10
  },
11
11
  "homepage": "https://github.com/richard-unterberg/nivel",
@@ -16,7 +16,7 @@
16
16
  "access": "public"
17
17
  },
18
18
  "bin": {
19
- "nivel": "./bin/nivel.mjs"
19
+ "nivel": "bin/nivel.mjs"
20
20
  },
21
21
  "files": [
22
22
  "dist",
@@ -87,17 +87,17 @@
87
87
  "tsx": "^4.21.0",
88
88
  "unist-util-visit": "^5.1.0",
89
89
  "vike-react": "^0.6.21",
90
- "zustand": "^5.0.8"
90
+ "zustand": "^5.0.12"
91
91
  },
92
92
  "peerDependencies": {
93
- "vike": "^0.4.255",
93
+ "vike": "^0.4.256",
94
94
  "vite": "^7.3.1"
95
95
  },
96
96
  "devDependencies": {
97
97
  "@types/node": "^24.5.2",
98
- "@types/react": "^19.1.12",
99
- "@types/react-dom": "^19.1.9",
100
- "tsup": "^8.5.0",
98
+ "@types/react": "^19.2.14",
99
+ "@types/react-dom": "^19.2.3",
100
+ "tsup": "^8.5.1",
101
101
  "typescript": "^6.0.2"
102
102
  }
103
103
  }