vannakam 1.0.3 → 1.0.5
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/README.md +9 -9
- package/index.js +12 -3
- package/package.json +13 -3
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Vannakam 👋
|
|
2
|
-
|
|
3
|
-
A simple test npm package created to learn and test the npm publishing workflow.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
Install the package using npm:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
1
|
+
# Vannakam 👋
|
|
2
|
+
|
|
3
|
+
A simple test npm package created to learn and test the npm publishing workflow.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install the package using npm:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
10
|
npm install vannakam
|
package/index.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* File: index.js
|
|
5
|
+
* Purpose: Minimal CLI entry point used to validate the npm publish/install flow.
|
|
6
|
+
* Author: Susenthiran
|
|
7
|
+
* Date: 2026-08-26
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
const { version } = require("./package.json");
|
|
11
|
+
|
|
12
|
+
console.log(`Vanakkam from CLI!@@! (vannakam v${version})`);
|
package/package.json
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vannakam",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Testing the npm",
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Testing the npm publish/install workflow",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"vannakam": "index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=18.0.0"
|
|
15
|
+
},
|
|
6
16
|
"scripts": {
|
|
7
|
-
"test": "
|
|
17
|
+
"test": "node test/smoke.test.js"
|
|
8
18
|
},
|
|
9
19
|
"keywords": [],
|
|
10
20
|
"author": "Susenthiran",
|