-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@remix-run/test",
"version": "0.5.0",
"description": "A test framework for JavaScript and TypeScript projects",
"author": "Shopify Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/remix-run/remix.git",
"directory": "packages/test"
},
"homepage": "https://github.com/remix-run/remix/tree/main/packages/test#readme",
"files": [
"tsconfig.json",
"LICENSE",
"README.md",
"dist",
"src",
"!src/**/*.test.*"
],
"type": "module",
"engines": {
"node": ">=24.3.0"
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./cli": "./src/cli.ts"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
}
},
"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 --type server",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@remix-run/node-tsx": "workspace:^",
"@remix-run/terminal": "workspace:^",
"es-module-lexer": "^2.0.0",
"esbuild": "^0.27.1",
"get-tsconfig": "^4.13.6",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"magic-string": "^0.30.21",
"oxc-resolver": "^11.19.1",
"source-map-js": "^1.2.1",
"v8-to-istanbul": "^9.3.0"
},
"peerDependencies": {
"playwright": "^1.60.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"devDependencies": {
"@remix-run/assert": "workspace:^",
"@remix-run/node-fetch-server": "workspace:^",
"@types/dom-navigation": "1.0.6",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/istanbul-reports": "^3.0.4",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"clsx": "2.1.1",
"decamelize": "6.0.1",
"playwright": "catalog:"
},
"keywords": [
"testing",
"browser",
"test",
"remix",
"component",
"playwright"
]
}