math-wizard 1.0.3 → 1.0.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.
- package/LICENSE +1 -1
- package/README.md +3 -0
- package/package.json +12 -2
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -62,3 +62,6 @@ Adds two numeric values and returns the sum.
|
|
|
62
62
|
## License
|
|
63
63
|
|
|
64
64
|
MIT
|
|
65
|
+
|
|
66
|
+
🔍 **Browse the source**: [github.com/yourusername/math-wizard](https://github.com/yourusername/math-wizard)
|
|
67
|
+
🐛 **Report an issue**: [github.com/yourusername/math-wizard/issues](https://github.com/yourusername/math-wizard/issues)
|
package/package.json
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "math-wizard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "a package that enables you to add numbers",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc",
|
|
7
|
-
"prepublish": "npm run build"
|
|
7
|
+
"prepublish": "npm run build",
|
|
8
|
+
"release:patch": "npm version patch && npm run build && npm publish --access public",
|
|
9
|
+
"release:minor": "npm version minor && npm run build && npm publish --access public",
|
|
10
|
+
"release:major": "npm version major && npm run build && npm publish --access public"
|
|
8
11
|
},
|
|
9
12
|
"keywords": [
|
|
10
13
|
"add",
|
|
11
14
|
"mathematics",
|
|
12
15
|
"react addition package"
|
|
13
16
|
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/moe-moaid/math-wizard.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/moe-moaid/math-wizard/issues"
|
|
23
|
+
},
|
|
14
24
|
"author": "Moe",
|
|
15
25
|
"license": "MIT",
|
|
16
26
|
"type": "module",
|