roberto-the-pro 1.0.0 → 1.0.2

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/index.js +1 -1
  2. package/package.json +3 -5
package/index.js CHANGED
@@ -1,3 +1,3 @@
1
- import isPrime from "./isPrime.js"
1
+ import isPrime from "roberto-the-pro"
2
2
  const prime=isPrime(99)
3
3
  console.log(prime)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "roberto-the-pro",
3
- "version": "1.0.0",
4
- "description": "the calculator",
3
+ "version": "1.0.2",
4
+ "description": "Prime number checker",
5
5
  "keywords": [
6
6
  "pro",
7
7
  "legend"
@@ -10,7 +10,5 @@
10
10
  "author": "Roberto2026",
11
11
  "type": "module",
12
12
  "main": "isPrime.js",
13
- "scripts": {
14
- "test": "pro,legend"
15
- }
13
+ "types": "index.d.ts"
16
14
  }