-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.67 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
{
"name": "@remix-run/cli",
"version": "0.3.4",
"description": "Command-line interface for Remix",
"author": "Michael Jackson <mjijackson@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/remix-run/remix.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/remix-run/remix/tree/main/packages/cli#readme",
"files": [
"LICENSE",
"README.md",
"dist",
"schema",
"src",
"template",
"!src/**/*.test.ts"
],
"type": "module",
"engines": {
"node": ">=24.3.0"
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
}
},
"dependencies": {
"@remix-run/data-table": "workspace:^",
"@remix-run/node-tsx": "workspace:^",
"@remix-run/terminal": "workspace:^",
"@remix-run/test": "workspace:^",
"jsonc-parser": "^3.3.1",
"semver": "^7.7.4"
},
"devDependencies": {
"@remix-run/assert": "workspace:^",
"@types/node": "catalog:",
"@types/semver": "^7.5.8",
"@typescript/native-preview": "catalog:"
},
"scripts": {
"build": "tsgo -p tsconfig.build.json",
"clean": "git clean -fdX",
"postpack": "node ../../scripts/sync-cli-template.ts --clean",
"prepack": "node ../../scripts/sync-cli-template.ts",
"prepublishOnly": "pnpm run build",
"test": "remix test --concurrency 1",
"typecheck": "tsgo --noEmit"
},
"keywords": [
"remix",
"cli",
"scaffold",
"project",
"command-line"
]
}