-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "url-toolbox",
"version": "1.0.2",
"description": "A TypeScript toolbox extending the native URL class with normalization, restrictions, and utilities.",
"author": "Nebulaevo",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"build": "tsc --build --clean && tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nebulaevo/url-toolbox.git"
},
"bugs": {
"url": "https://github.com/Nebulaevo/url-toolbox/issues"
},
"homepage": "https://github.com/Nebulaevo/url-toolbox#readme",
"devDependencies": {
"@types/node": "^24.5.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"sniffly": "^1.0.2"
},
"keywords": [
"url", "absolute", "relative",
"secure", "restricted",
"string representation", "normalised", "filtered",
"typescript", "web"
]
}