forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.95 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
{
"name": "@remix-run/route-pattern",
"version": "0.23.0",
"description": "Match and generate URLs with strong typing",
"contributors": [
"Michael Jackson <mjijackson@gmail.com>",
"Pedro Cattori <pcattori@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/remix-run/remix.git",
"directory": "packages/route-pattern"
},
"homepage": "https://github.com/remix-run/remix/tree/main/packages/route-pattern#readme",
"files": [
"LICENSE",
"README.md",
"dist",
"src",
"!src/**/*.test.ts"
],
"type": "module",
"exports": {
".": "./src/route-pattern.ts",
"./href": "./src/href.ts",
"./join": "./src/join.ts",
"./match": "./src/match.ts",
"./specificity": "./src/specificity.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/route-pattern.d.ts",
"default": "./dist/route-pattern.js"
},
"./href": {
"types": "./dist/href.d.ts",
"default": "./dist/href.js"
},
"./join": {
"types": "./dist/join.d.ts",
"default": "./dist/join.js"
},
"./match": {
"types": "./dist/match.d.ts",
"default": "./dist/match.js"
},
"./specificity": {
"types": "./dist/specificity.d.ts",
"default": "./dist/specificity.js"
},
"./package.json": "./package.json"
}
},
"devDependencies": {
"@remix-run/assert": "workspace:*",
"@remix-run/test": "workspace:*",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"dedent": "^1.7.1"
},
"scripts": {
"build": "tsgo -p tsconfig.build.json",
"clean": "git clean -fdX",
"prepublishOnly": "pnpm run build",
"test": "remix-test",
"test:bun": "bun x --bun remix-test",
"typecheck": "tsgo --noEmit"
},
"keywords": [
"route",
"pattern",
"url",
"match",
"matcher"
]
}