-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "google-ips",
"version": "1.0.0",
"description": "Google IP address list grouped by country with JSON data and query helpers.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/justjavac/Google-IPs.git"
},
"bugs": {
"url": "https://github.com/justjavac/Google-IPs/issues"
},
"homepage": "https://github.com/justjavac/Google-IPs#readme",
"keywords": [
"google",
"ips",
"ip",
"cdn"
],
"type": "commonjs",
"main": "dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"require": "./dist/src/index.js",
"default": "./dist/src/index.js"
},
"./data": {
"types": "./data/google-ips.d.ts",
"require": "./dist/data/google-ips.json",
"default": "./dist/data/google-ips.json"
},
"./package.json": "./package.json"
},
"files": [
"data/google-ips.d.ts",
"dist/src",
"dist/data",
"README.md"
],
"scripts": {
"clean": "node -e \"const fs = require('node:fs'); for (const path of ['dist', 'dist-scripts']) fs.rmSync(path, { recursive: true, force: true });\"",
"build": "npm run clean && npm run generate-data && tsc -p tsconfig.json",
"generate-data": "tsc -p tsconfig.scripts.json && node dist-scripts/scripts/generate-data.js",
"prepack": "npm run build",
"test": "npm run build && node dist-scripts/scripts/run-tests.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16"
}
}