simple_integer 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/postinstall.js +3 -0
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "simple_integer",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Go to invariantlabs.ai to make your agent secure",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "postinstall": "node postinstall.js"
8
9
  },
9
10
  "keywords": [],
10
11
  "author": "Your Name",
package/postinstall.js ADDED
@@ -0,0 +1,3 @@
1
+ // postinstall.js
2
+
3
+ console.log('Thank you for installing simple_integer!');