Skip to content

Commit 35615c2

Browse files
committed
chore: align packageManager and engines fields across repos
- Change packageManager to exact version: pnpm@10.21.0 (Corepack requires exact semver) - Update engines.pnpm from >=10.16.0 to >=10.21.0 (align with other repos) - engines.node already consistent at >=18
1 parent 726f197 commit 35615c2

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "@socketsecurity/sdk",
33
"version": "3.1.3",
4-
"packageManager": "pnpm@>=10.21.0",
4+
"packageManager": "pnpm@10.21.0",
55
"license": "MIT",
66
"description": "SDK for the Socket API client",
7-
"author": {
8-
"name": "Socket Inc",
9-
"email": "eng@socket.dev",
10-
"url": "https://socket.dev"
11-
},
127
"homepage": "https://github.com/SocketDev/socket-sdk-js",
138
"repository": {
149
"type": "git",
1510
"url": "git://github.com/SocketDev/socket-sdk-js.git"
1611
},
12+
"author": {
13+
"name": "Socket Inc",
14+
"email": "eng@socket.dev",
15+
"url": "https://socket.dev"
16+
},
1717
"main": "./dist/index.js",
1818
"types": "./dist/index.d.ts",
1919
"exports": {
@@ -35,6 +35,17 @@
3535
"default": "./types/api-helpers.d.ts"
3636
}
3737
},
38+
"files": [
39+
"CHANGELOG.md",
40+
"data/*.json",
41+
"dist/*.d.ts",
42+
"dist/*.js",
43+
"types/*.d.ts"
44+
],
45+
"engines": {
46+
"node": ">=18",
47+
"pnpm": ">=10.21.0"
48+
},
3849
"scripts": {
3950
"build": "node scripts/build.mjs",
4051
"bump": "node scripts/bump.mjs",
@@ -103,17 +114,6 @@
103114
"vite": "7.1.12"
104115
}
105116
},
106-
"engines": {
107-
"node": ">=18",
108-
"pnpm": ">=10.16.0"
109-
},
110-
"files": [
111-
"CHANGELOG.md",
112-
"data/*.json",
113-
"dist/*.d.ts",
114-
"dist/*.js",
115-
"types/*.d.ts"
116-
],
117117
"typeCoverage": {
118118
"cache": true,
119119
"atLeast": 99,

0 commit comments

Comments
 (0)