-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 925 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 925 Bytes
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
{
"name": "@hyperjump/uri",
"version": "1.3.3",
"description": "A small and fast library for validating parsing and resolving URIs and IRIs",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "eslint lib",
"test": "vitest --watch=false",
"type-check": "tsc --noEmit"
},
"repository": "github:hyperjump-io/uri",
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"keywords": [
"URI",
"IRI",
"resolve",
"relative",
"parse",
"RFC3986",
"RFC-3986",
"RFC3987",
"RFC-3987"
],
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/node": "^22.13.0",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"typescript-eslint": "*",
"vitest": "*"
}
}