@anitrack/patreon-wrapper 1.4.0 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -13,6 +13,8 @@
13
13
  - [Sandbox for development](#Sandboxing)
14
14
  - [License](#license)
15
15
 
16
+ <br />
17
+
16
18
  ## Installing
17
19
 
18
20
  Using NPM
@@ -128,14 +130,12 @@ Clean Response Example
128
130
 
129
131
  ## Sandboxing
130
132
 
131
- > This is great for development and working with fake patrons users. The fake patrons in FetchPatrons() will be exactly the same as real ones!
132
-
133
- <br />
133
+ > This is great for development and working with fake patrons users. The fake patrons object will be exactly the same as real ones!
134
134
 
135
135
  ### Importing Sandbox
136
136
 
137
137
  ```js
138
- import { Patreon, Sandbox } from './index'
138
+ import { Patreon, Sandbox } from '@anitrack/patreon-wrapper'
139
139
  ```
140
140
 
141
141
  ### Adding Fake Patrons to the Sandbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anitrack/patreon-wrapper",
3
- "version": "1.4.0",
3
+ "version": "1.4.3",
4
4
  "description": "Discord Patreon wrapper for AniTrack",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib",
@@ -13,19 +13,24 @@
13
13
  "url": "git://github.com/AniTrack/patreon-wrapper.git"
14
14
  },
15
15
  "author": "AniTrack",
16
+ "keywords": [
17
+ "patreon",
18
+ "discord",
19
+ "api"
20
+ ],
16
21
  "license": "MIT",
17
22
  "bugs": {
18
23
  "url": "https://github.com/AniTrack/patreon-wrapper/issues"
19
24
  },
20
25
  "homepage": "https://github.com/AniTrack/patreon-wrapper#readme",
21
26
  "dependencies": {
22
- "axios": "^0.27.2",
23
- "typescript": "^4.6.4"
27
+ "axios": "^0.27.2"
24
28
  },
25
29
  "publishConfig": {
26
30
  "access": "public"
27
31
  },
28
32
  "devDependencies": {
29
- "ts-node": "^10.7.0"
33
+ "ts-node": "^10.7.0",
34
+ "typescript": "^4.6.4"
30
35
  }
31
36
  }