obsidian-typings 5.23.0 → 6.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.
Files changed (2) hide show
  1. package/README.md +12 -20
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -1,26 +1,18 @@
1
- # obsidian-typings
1
+ <center>
2
2
 
3
- TypeScript type definitions for Obsidian's internal/unofficial APIs.
3
+ # Obsidian Typings
4
4
 
5
- This package is an alias for [`@obsidian-typings/obsidian-public-latest`](https://www.npmjs.com/package/@obsidian-typings/obsidian-public-latest), which always points to the latest public Obsidian release typings.
5
+ </center>
6
6
 
7
- ## Installation
7
+ <div align="center">
8
+ <a href="https://obsidian.md/changelog/2026-03-23-desktop-v1.12.7/"><img src="https://img.shields.io/badge/Obsidian_version-1.12.7_public-blue?logo=obsidian" alt="Obsidian version: 1.12.7 public"></a>
9
+ <a href="https://github.com/obsidian-typings/obsidian-typings/tree/release/obsidian-public/1.12.7"><img src="https://img.shields.io/badge/Git_branch-release/obsidian--public/1.12.7-red?logo=git" alt="Git branch: release/obsidian-public/1.12.7"></a>
10
+ </div>
8
11
 
9
- ```bash
10
- npm install obsidian-typings
11
- ```
12
+ This branch contains the typings for Obsidian version [`1.12.7 public`](https://obsidian.md/changelog/2026-03-23-desktop-v1.12.7/).
12
13
 
13
- ## Migration
14
+ > [!WARNING]
15
+ >
16
+ > If you are making a PR to this branch, please make sure to verify that all your changes are applicable to this version.
14
17
 
15
- This package now re-exports from the `@obsidian-typings` org. For more control, install a specific version directly:
16
-
17
- ```bash
18
- # Always latest public
19
- npm install @obsidian-typings/obsidian-public-latest
20
-
21
- # Specific Obsidian version
22
- npm install @obsidian-typings/obsidian-public-1.12.7
23
-
24
- # Catalyst (early access)
25
- npm install @obsidian-typings/obsidian-catalyst-latest
26
- ```
18
+ [See full docs](https://github.com/obsidian-typings/obsidian-typings/blob/main/README.md)
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "obsidian-typings",
3
- "version": "5.23.0",
3
+ "version": "6.0.0",
4
4
  "description": "TypeScript type definitions for Obsidian's internal/unofficial APIs. Wrapper for @obsidian-typings/obsidian-public-latest.",
5
+ "license": "MIT",
5
6
  "type": "module",
6
7
  "main": "",
7
8
  "types": "./types.d.cts",
8
9
  "exports": {
9
10
  ".": {
10
- "require": { "types": "./types.d.cts" },
11
- "import": { "types": "./types.d.mts" }
11
+ "import": { "types": "./types.d.mts" },
12
+ "require": { "types": "./types.d.cts" }
12
13
  },
13
14
  "./implementations": {
14
- "require": { "types": "./implementations.d.cts", "default": "./implementations.cjs" },
15
- "import": { "types": "./implementations.d.mts", "default": "./implementations.mjs" }
15
+ "import": { "default": "./implementations.mjs", "types": "./implementations.d.mts" },
16
+ "require": { "default": "./implementations.cjs", "types": "./implementations.d.cts" }
16
17
  }
17
18
  },
18
19
  "dependencies": {
19
- "@obsidian-typings/obsidian-public-latest": "^5.22.2"
20
- },
21
- "license": "MIT"
20
+ "@obsidian-typings/obsidian-public-latest": "^6.0.0"
21
+ }
22
22
  }