-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.17 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
{
"type": "module",
"name": "@msw/url",
"version": "0.1.1",
"description": "Utilities for working with URLs.",
"types": "./build/index.d.mts",
"imports": {
"#src/*": "./src/*",
"#tests/*": "./tests/*"
},
"exports": {
".": {
"types": "./build/index.d.mts",
"default": "./build/index.mjs"
}
},
"scripts": {
"start": "tsdown -w",
"lint": "publint",
"test": "vitest",
"bench": "vitest bench",
"build": "tsdown",
"release": "release publish"
},
"files": [
"./build"
],
"keywords": [
"match",
"url",
"pattern",
"route",
"parse",
"params",
"wildcard"
],
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/mswjs/url"
},
"homepage": "https://github.com/mswjs/url",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@ossjs/release": "^0.10.1",
"@remix-run/route-pattern": "^0.19.0",
"@types/node": "^25.5.0",
"find-my-way": "^9.5.0",
"path-to-regexp": "^8.3.0",
"publint": "^0.3.18",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}