osrs-tools 1.0.2 → 1.0.3
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 +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -65,13 +65,15 @@ import { QuestTool, questArray, questObject } from 'osrs-tools';
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
### Module Optional Dependencies
|
|
68
|
-
|
|
68
|
+
|
|
69
|
+
If you want to use your account to test quest tool compatibilities or check what you can unlock for slayer, I am referencing the repository [osrs-json-hiscores](https://www.npmjs.com/package/osrs-json-hiscores)
|
|
69
70
|
|
|
70
71
|
```bash
|
|
71
72
|
npm install osrs-json-hiscores --save
|
|
72
73
|
```
|
|
73
74
|
|
|
74
75
|
### Todo
|
|
76
|
+
|
|
75
77
|
- Fix quest data and ensure all requirements exist
|
|
76
78
|
|
|
77
79
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "osrs-tools",
|
|
3
3
|
"description": "A JavaScript package to provide JSON data for all current Old School RuneScape quests. This package aims to help junior software developers create tools related to Old School RuneScape. It's a work in progress, and issues should be reported to jamescer@hawkmail.newpaltz.edu or jamesmcerniglia@gmail.com. This is highly paired with 'osrs-json-hiscores' data structure",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
9
|
"dist/**"
|
|
10
10
|
],
|
|
11
11
|
"engines": {
|