-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.37 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@socketsecurity/sdk",
"version": "3.4.1",
"description": "SDK for the Socket API client",
"homepage": "https://github.com/SocketDev/socket-sdk-js",
"license": "MIT",
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"repository": {
"type": "git",
"url": "git://github.com/SocketDev/socket-sdk-js.git"
},
"files": [
"CHANGELOG.md",
"data/*.json",
"dist/*.d.ts",
"dist/*.js",
"types/*.d.ts"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./testing": {
"types": "./dist/testing.d.ts",
"default": "./dist/testing.js"
},
"./types/api": {
"types": "./types/api.d.ts",
"default": "./types/api.d.ts"
},
"./types/api-helpers": {
"types": "./types/api-helpers.d.ts",
"default": "./types/api-helpers.d.ts"
}
},
"scripts": {
"build": "node scripts/build.mjs",
"bump": "node scripts/bump.mjs",
"check": "node scripts/check.mjs",
"clean": "node scripts/clean.mjs",
"cover": "node scripts/cover.mjs",
"fix": "node scripts/lint.mjs --fix",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"generate-sdk": "node scripts/generate-sdk.mjs",
"lint": "node scripts/lint.mjs",
"precommit": "pnpm run check --lint --staged",
"prepare": "husky",
"ci:validate": "node scripts/ci-validate.mjs",
"prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1",
"publish": "node scripts/publish.mjs",
"publish:ci": "node scripts/publish.mjs --tag ${DIST_TAG:-latest}",
"claude": "node scripts/claude.mjs",
"test": "node scripts/test.mjs",
"type": "tsgo --noEmit -p .config/tsconfig.check.json",
"update": "node scripts/update.mjs"
},
"dependencies": {
"@socketregistry/packageurl-js": "1.4.1",
"@socketsecurity/lib": "5.11.4",
"form-data": "4.0.5"
},
"devDependencies": {
"@babel/generator": "7.28.5",
"@babel/parser": "7.26.3",
"@babel/traverse": "7.26.4",
"@babel/types": "7.26.3",
"@dotenvx/dotenvx": "1.54.1",
"@oxlint/migrate": "1.52.0",
"@sveltejs/acorn-typescript": "1.0.8",
"@types/babel__traverse": "7.28.0",
"@types/node": "24.9.2",
"@typescript/native-preview": "7.0.0-dev.20250926.1",
"@vitest/coverage-v8": "4.0.3",
"acorn": "8.15.0",
"del": "8.0.1",
"dev-null-cli": "2.0.0",
"esbuild": "0.25.11",
"fast-glob": "3.3.3",
"http2-wrapper": "2.2.1",
"husky": "9.1.7",
"magic-string": "0.30.14",
"nock": "14.0.10",
"openapi-typescript": "6.7.6",
"oxfmt": "0.37.0",
"oxlint": "1.52.0",
"semver": "7.7.2",
"taze": "19.9.2",
"type-coverage": "2.29.7",
"vitest": "4.0.3"
},
"typeCoverage": {
"atLeast": 99,
"cache": true,
"ignore-files": "test/*",
"ignore-non-null-assertion": true,
"ignore-type-assertion": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"ignoreEmptyType": true,
"strict": true
},
"engines": {
"node": ">=18",
"pnpm": ">=10.25.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild",
"unrs-resolver"
],
"overrides": {
"vite": "7.1.12"
}
}
}