@obsidian-typings/obsidian-catalyst-latest 5.16.0 → 5.16.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/README.md +19 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @obsidian-typings/obsidian-catalyst-latest
|
|
2
|
+
|
|
3
|
+
TypeScript type definitions for Obsidian's internal/unofficial APIs, always pointing to the latest catalyst Obsidian release.
|
|
4
|
+
|
|
5
|
+
This is a thin wrapper that re-exports from the versioned package (`@obsidian-typings/obsidian-catalyst-1.12.6`).
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @obsidian-typings/obsidian-catalyst-latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
If you want to target a specific Obsidian version instead, install the versioned package directly:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install @obsidian-typings/obsidian-catalyst-1.12.6
|
|
19
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obsidian-typings/obsidian-catalyst-latest",
|
|
3
|
-
"version": "5.16.
|
|
3
|
+
"version": "5.16.1",
|
|
4
4
|
"description": "Latest obsidian-typings for Obsidian catalyst releases. Thin wrapper around @obsidian-typings/obsidian-catalyst-1.12.6.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"implementations.d.cts",
|
|
32
32
|
"implementations.d.mts",
|
|
33
33
|
"implementations.cjs",
|
|
34
|
-
"implementations.mjs"
|
|
34
|
+
"implementations.mjs",
|
|
35
|
+
"README.md"
|
|
35
36
|
],
|
|
36
37
|
"dependencies": {
|
|
37
38
|
"@obsidian-typings/obsidian-catalyst-1.12.6": "^5.16.0"
|