@gowri48/npmpublish 1.0.8 → 1.1.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.
@@ -14,9 +14,10 @@ jobs:
14
14
 
15
15
  - uses: actions/setup-node@v6
16
16
  with:
17
- node-version: '24.13.0'
17
+ node-version: '24'
18
+ check-latest: true
18
19
  registry-url: 'https://registry.npmjs.org'
19
- cache: 'npm'
20
- cache-dependency-path: ./package-lock.json
20
+ cache: 'yarn'
21
+ - run: yarn install --frozen-lockfile
21
22
 
22
23
  - run: npm publish --access=public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.0.8",
3
+ "version": "1.1.0",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
@@ -10,10 +10,11 @@
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
11
11
  },
12
12
  "publishConfig": {
13
- "access": "public"
14
-
13
+ "access": "public"
14
+ },
15
+ "dependencies": {
16
+ "axios": "^1.7.0"
15
17
  },
16
-
17
18
  "engines": {
18
19
  "node": ">=18"
19
20
  }
@@ -0,0 +1 @@
1
+ requests==2.25.1