@harytempgit01/simplepkg 0.2.0 → 0.2.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.
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harytempgit01/simplepkg",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A small utility npm package with string helpers, IDs, validation, and a CLI.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"packageManager": "pnpm@9.15.9",
|
|
6
7
|
"main": "./dist/index.js",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
@@ -23,6 +24,14 @@
|
|
|
23
24
|
"type": "git",
|
|
24
25
|
"url": "https://github.com/harytempgit01/SimplePkg.git"
|
|
25
26
|
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "node scripts/build.js",
|
|
29
|
+
"dev": "node src/cli.js",
|
|
30
|
+
"run": "node dist/cli.js",
|
|
31
|
+
"start": "npm run build && npm run run",
|
|
32
|
+
"prepack": "npm run build",
|
|
33
|
+
"test": "node --test"
|
|
34
|
+
},
|
|
26
35
|
"keywords": [
|
|
27
36
|
"cli",
|
|
28
37
|
"helpers",
|
|
@@ -41,12 +50,5 @@
|
|
|
41
50
|
},
|
|
42
51
|
"engines": {
|
|
43
52
|
"node": ">=18"
|
|
44
|
-
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"build": "node scripts/build.js",
|
|
47
|
-
"dev": "node src/cli.js",
|
|
48
|
-
"run": "node dist/cli.js",
|
|
49
|
-
"start": "npm run build && npm run run",
|
|
50
|
-
"test": "node --test"
|
|
51
53
|
}
|
|
52
|
-
}
|
|
54
|
+
}
|