@gowri48/npmpublish 1.0.9 → 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.
@@ -17,7 +17,7 @@ jobs:
17
17
  node-version: '24'
18
18
  check-latest: true
19
19
  registry-url: 'https://registry.npmjs.org'
20
- cache: 'npm'
21
- cache-dependency-path: ./package-lock.json
20
+ cache: 'yarn'
21
+ - run: yarn install --frozen-lockfile
22
22
 
23
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.9",
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