@anitrack/patreon-wrapper 1.4.1 → 1.4.4

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 +2 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Patreon Wrapper 🍊
2
2
 
3
- 💎 Simple Patreon wrapper designed for Discord Bots to process user's premium subscription and lower down the Patreon API complexity...
3
+ 💎 Simple Patreon wrapper designed best for Discord Bots to process user's patreon subscription and lower down the Patreon API complexity...
4
4
 
5
5
  🌄 You can also simulates sandbox of fake Patrons for development and code testing purposes
6
6
 
@@ -135,7 +135,7 @@ Clean Response Example
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,7 +1,7 @@
1
1
  {
2
2
  "name": "@anitrack/patreon-wrapper",
3
- "version": "1.4.1",
4
- "description": "Discord Patreon wrapper for AniTrack",
3
+ "version": "1.4.4",
4
+ "description": "Universal Patron API v2 wrapper that simplifies the API's response for easier usage and lower response complexity",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib",
7
7
  "scripts": {
@@ -24,13 +24,13 @@
24
24
  },
25
25
  "homepage": "https://github.com/AniTrack/patreon-wrapper#readme",
26
26
  "dependencies": {
27
- "axios": "^0.27.2",
28
- "typescript": "^4.6.4"
27
+ "axios": "^0.27.2"
29
28
  },
30
29
  "publishConfig": {
31
30
  "access": "public"
32
31
  },
33
32
  "devDependencies": {
34
- "ts-node": "^10.7.0"
33
+ "ts-node": "^10.7.0",
34
+ "typescript": "^4.6.4"
35
35
  }
36
36
  }