stardew-valley-data 0.2.0 → 0.4.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/CHANGELOG.md +13 -1
- package/README.md +9 -6
- package/data/villagers.json +1362 -68
- package/dist/index.d.mts +28 -9
- package/dist/index.d.ts +28 -9
- package/dist/index.js +1435 -77
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1435 -77
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
6
6
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [v0.
|
|
8
|
+
## [v0.4.0] - 2026-03-15
|
|
9
|
+
|
|
10
|
+
### Breaking Changes
|
|
11
|
+
|
|
12
|
+
- Change many of the output modules for parsing the file.
|
|
13
|
+
|
|
14
|
+
## [v0.3.0] - 2026-03-15
|
|
15
|
+
|
|
16
|
+
### Fix
|
|
17
|
+
|
|
18
|
+
- Add missing Villager Events
|
|
19
|
+
|
|
20
|
+
## [v0.2.0] - 2026-03-10
|
|
9
21
|
|
|
10
22
|
### Added
|
|
11
23
|
|
package/README.md
CHANGED
|
@@ -4,17 +4,20 @@
|
|
|
4
4
|
<h3>A comprehensive, fully-typed dataset for Stardew Valley</h3>
|
|
5
5
|
<p>Structured JSON data, 1,900+ image assets, and a chainable query builder API for game items, crops, fish, villagers, shops, and more.</p>
|
|
6
6
|
|
|
7
|
-

|
|
11
|
-

|
|
12
|
-

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
13
10
|
|
|
14
11
|
</div>
|
|
15
12
|
|
|
16
13
|
---
|
|
17
14
|
|
|
15
|
+
> **Pre-1.0 Notice:** This package is under active development. Breaking changes to the save file
|
|
16
|
+
> parser structure, data types, and other APIs may occur in any release before `1.0.0`. Pin your
|
|
17
|
+
> version or review the [Change Log](CHANGELOG.md) before upgrading.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
18
21
|
## 📦 Installation
|
|
19
22
|
|
|
20
23
|
```bash
|