-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
198 lines (198 loc) · 5.27 KB
/
package.json
File metadata and controls
198 lines (198 loc) · 5.27 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "proxycheck-sdk",
"version": "0.9.0",
"description": "Modern TypeScript SDK for the ProxyCheck.io V2 API - Detect proxies, VPNs, and manage IP reputation",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"release-please": {
"release-type": "node",
"package-name": "proxycheck-sdk",
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "deps",
"section": "Dependencies"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation",
"hidden": false
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
]
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"dev": "rollup -c --watch",
"clean": "rimraf dist",
"prebuild": "pnpm run clean",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write ./src",
"check": "biome check ./src",
"check:fix": "biome check --write ./src",
"prepublishOnly": "pnpm run test:ci && pnpm run build",
"release": "pnpm run prepublishOnly && npm publish",
"release:dry": "pnpm run prepublishOnly && npm publish --dry-run",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:compatibility": "tests/compatibility/run-compatibility-tests.sh",
"test:commonjs": "node tests/compatibility/commonjs-example.js",
"test:esm": "node tests/compatibility/esm-example.mjs",
"test:typescript": "tsc --project tests/compatibility/tsconfig.json",
"test:integration": "jest --config jest.config.integration.js",
"test:integration:quick": "RUN_LIVE_API_TESTS=true jest --config jest.config.integration.js --testNamePattern='Smoke Tests'",
"test:integration:full": "RUN_LIVE_API_TESTS=true RUN_COMPREHENSIVE_TESTS=true jest --config jest.config.integration.js",
"test:integration:verbose": "RUN_LIVE_API_TESTS=true VERBOSE_TEST_LOGGING=true jest --config jest.config.integration.js",
"examples": "tsx examples/run-all-examples.ts",
"examples:basic": "tsx examples/basic-usage.ts",
"examples:batch": "tsx examples/batch-processing.ts",
"examples:country": "tsx examples/country-filtering.ts",
"examples:errors": "tsx examples/error-handling.ts",
"examples:lists": "tsx examples/list-management.ts",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepare": "scripts/install-hooks.sh || true",
"hooks:install": "lefthook install",
"hooks:uninstall": "lefthook uninstall",
"hooks:run": "lefthook run"
},
"keywords": [
"proxycheck",
"proxy",
"vpn",
"detection",
"ip",
"reputation",
"security",
"api",
"sdk",
"typescript",
"fraud",
"blacklist",
"whitelist",
"geolocation",
"ip-lookup",
"threat-detection",
"risk-assessment",
"email-validation",
"disposable-email",
"node",
"nodejs",
"esm",
"commonjs"
],
"author": "Johan Viberg",
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanviberg/proxycheck-sdk.git"
},
"bugs": {
"url": "https://github.com/johanviberg/proxycheck-sdk/issues"
},
"homepage": "https://github.com/johanviberg/proxycheck-sdk#readme",
"funding": {
"type": "individual",
"url": "https://johanviberg.com"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@jest/globals": "^30.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"jest": "^30.0.4",
"rimraf": "^6.0.1",
"rollup": "^4.44.2",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0",
"zod": "^3.25.75"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "50 KB"
},
{
"path": "dist/index.mjs",
"limit": "45 KB"
}
]
}