-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 1.83 KB
/
package.json
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
{
"name": "toad-uri-js",
"version": "5.0.1",
"description": "A modern RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/normalizing/resolving/serializing library for JavaScript.",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build:dev": "tsc",
"build:release": "tsup",
"test": "vitest --coverage",
"lint": "biome lint src tests biome.json",
"lint:fix": "biome check --apply src tests biome.json",
"prepublishOnly": "npm run build:release"
},
"repository": {
"type": "git",
"url": "http://github.com/kibertoad/toad-uri-js"
},
"keywords": [
"URI",
"IRI",
"IDN",
"URN",
"UUID",
"HTTP",
"HTTPS",
"WS",
"WSS",
"MAILTO",
"RFC3986",
"RFC3987",
"RFC5891",
"RFC2616",
"RFC2818",
"RFC2141",
"RFC4122",
"RFC4291",
"RFC5952",
"RFC6068",
"RFC6455",
"RFC6874"
],
"author": "Gary Court <[email protected]>",
"maintainers": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"license": "BSD-2-Clause-Views",
"bugs": {
"url": "https://github.com/kibertoad/toad-uri-js/issues"
},
"homepage": "https://github.com/kibertoad/toad-uri-js",
"dependencies": {
"punycode": "^2.3.1"
},
"devDependencies": {
"@types/punycode": "^2.1.3",
"@biomejs/biome": "^1.5.3",
"@vitest/coverage-v8": "^1.2.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}