-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.58 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
{
"name": "create-react-router",
"type": "module",
"version": "8.0.1",
"description": "Create a new React Router app",
"homepage": "https://reactrouter.com",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/react-router",
"directory": "packages/create-react-router"
},
"license": "MIT",
"bin": {
"create-react-router": "dist/cli.js"
},
"exports": {
"./package.json": "./package.json"
},
"scripts": {
"build": "wireit",
"prepack": "node ./scripts/copy-agent-skills.mjs",
"typecheck": "tsc"
},
"wireit": {
"build": {
"command": "tsdown",
"files": [
"../../pnpm-workspace.yaml",
"*.ts",
"tsconfig.json",
"package.json"
],
"output": [
"dist/**"
]
}
},
"dependencies": {
"execa": "9.6.1",
"gunzip-maybe": "^1.4.2",
"log-update": "^8.0.0",
"picocolors": "^1.1.1",
"semver": "^7.8.1",
"sisteransi": "^1.0.5",
"sort-package-json": "^3.6.1",
"strip-ansi": "^7.2.0",
"tar-fs": "^3.1.2"
},
"devDependencies": {
"@types/gunzip-maybe": "^1.4.3",
"@types/node": "^22.19.19",
"@types/recursive-readdir": "^2.2.1",
"@types/semver": "^7.7.1",
"@types/tar-fs": "^2.0.4",
"msw": "^2.14.6",
"tiny-invariant": "^1.2.0",
"tsdown": "catalog:",
"typescript": "catalog:",
"wireit": "catalog:"
},
"engines": {
"node": ">=22.22.0"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}