-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.56 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
{
"name": "parse-domain",
"version": "0.0.0-semantically-released",
"description": "Splits a hostname into subdomains, domain and (effective) top-level domains",
"keywords": [
"domain",
"url",
"sub-domain",
"tld",
"parse",
"sanitize",
"top-level"
],
"homepage": "https://github.com/peerigon/parse-domain#readme",
"bugs": {
"url": "https://github.com/peerigon/parse-domain/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/parse-domain.git"
},
"license": "MIT",
"author": "peerigon <developers@peerigon.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/main.js"
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"bin": {
"parse-domain-update": "./dist/bin/update.js"
},
"files": [
"dist",
"serialized-tries",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"test": "run-p test:*",
"test:suite": "vitest run --coverage",
"test:format": "prettier --check .",
"test:lint": "eslint --max-warnings 0 --cache .",
"test:types": "tsc --noEmit",
"test:jsr": "jsr publish --dry-run --allow-dirty",
"vitest": "vitest",
"build": "run-s build:*",
"build:cleanup": "rimraf dist",
"build:tsc": "tsc -p ./tsconfig.build.json",
"build:update": "node ./dist/bin/update.js",
"prepare": "run-p prepare:*",
"prepare:husky": "husky",
"prepare:build": "npm run build",
"update:psl-fixture": "npm run node -- ./src/scripts/update-psl-fixture.ts",
"update:dependencies": "updtr",
"node": "node --no-warnings --loader ts-node/esm/transpile-only",
"release": "semantic-release"
},
"dependencies": {
"is-ip": "^5.0.1"
},
"devDependencies": {
"@djankies/vitest-mcp": "0.5.1",
"@eslint/mcp": "0.3.7",
"@peerigon/configs": "^18.1.2",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jsr": "^0.14.3",
"lint-staged": "^17.0.8",
"nock": "^14.0.10",
"npm-run-all2": "^9.0.2",
"pin-github-action": "^3.4.0",
"prettier": "^3.9.0",
"rimraf": "^6.0.1",
"secretlint": "^13.0.2",
"semantic-release": "^25.0.3",
"ts-lsp-mcp": "0.1.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"updtr": "^4.1.0",
"vitest": "^4.1.9"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.16.0",
"onFail": "error"
}
},
"publishConfig": {
"access": "public",
"provenance": true
}
}