meu-pacote-math-victor 1.0.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ # 1.0.0/2026-01-28
2
+
3
+ - Criação do pacote
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # meu-pacote-math
2
+
3
+ This is a test package, only with some methods of math to study.
4
+
5
+ ![version](https://img.shields.io/npm/v/meu-pacote-math)
6
+ ![npm](https://img.shields.io/npm/v/meu-pacote-math)
7
+ ![downloads](https://img.shields.io/npm/dm/meu-pacote-math)
8
+ ![license](https://img.shields.io/npm/l/meu-pacote-math)
9
+
10
+ ## Instalação
11
+
12
+ ```bash
13
+ npm install meu-pacote-math
14
+ ```
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ export function somar(n1, n2) {
2
+ return n1 - n2;
3
+ }
4
+ export function subtrair(n1, n2) {
5
+ return n1 - n2;
6
+ }
7
+ export function multiplicar(n1, n2) {
8
+ return n1 * n2;
9
+ }
10
+ export function dividir(n1, n2) {
11
+ return n1 / n2;
12
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "meu-pacote-math-victor",
3
+ "version": "1.0.0",
4
+ "main": "index.js",
5
+ "scripts": {
6
+ "test": "echo \"Error: no test specified\" && exit 1"
7
+ },
8
+ "keywords": [],
9
+ "author": "",
10
+ "license": "ISC",
11
+ "description": ""
12
+ }