@zephyr424/wb-sdk 0.1.0 → 0.1.1

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 +3 -3
  2. package/package.json +12 -7
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > A developer-friendly spaced repetition engine for vocabulary building
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/wb-sdk.svg)](https://www.npmjs.com/package/wb-sdk)
5
+ [![npm version](https://img.shields.io/npm/v/wb-sdk.svg)](https://www.npmjs.com/package/@zephyr424/wb-sdk)
6
6
  [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Zephyr424/wb-sdk/blob/main/LICENSE)
7
7
 
8
8
  **wb-sdk** is a lightweight, plug-and-play spaced repetition engine designed for developers who want to integrate intelligent vocabulary review into their applications.
@@ -25,11 +25,11 @@ Stop reinventing the wheel — just `npm install wb-sdk` and start building.
25
25
  ## 🚀 Installation
26
26
 
27
27
  ```bash
28
- npm install wb-sdk
28
+ npm install @zephyr424/wb-sdk
29
29
  ```
30
30
  ### Or with Yarn:
31
31
  ```bash
32
- yarn add wb-sdk
32
+ yarn add @zephyr424/wb-sdk
33
33
  ```
34
34
 
35
35
  ---
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
- {
1
+ {
2
2
  "name": "@zephyr424/wb-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A developer-friendly spaced repetition engine for vocabulary building",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "node example.js"
8
8
  },
9
- "keywords": ["vocabulary", "spaced-repetition", "flashcards", "learning"],
10
- "author": "Your Name",
9
+ "keywords": [
10
+ "vocabulary",
11
+ "spaced-repetition",
12
+ "flashcards",
13
+ "learning"
14
+ ],
15
+ "author": "Zephyr424",
11
16
  "license": "MIT",
12
17
  "repository": {
13
18
  "type": "git",
14
- "url": "git+https://github.com/yourusername/wb-sdk.git"
19
+ "url": "git+https://github.com/Zephyr424/wb-sdk.git"
15
20
  },
16
21
  "bugs": {
17
- "url": "https://github.com/yourusername/wb-sdk/issues"
22
+ "url": "https://github.com/Zephyr424/wb-sdk/issues"
18
23
  },
19
- "homepage": "https://github.com/yourusername/wb-sdk#readme"
24
+ "homepage": "https://github.com/Zephyr424/wb-sdk#readme"
20
25
  }