-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"private": true,
"version": "10.46.0",
"name": "@sentry-internal/test-utils",
"author": "Sentry",
"license": "MIT",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/types/index.d.ts",
"files": [
"cjs",
"esm",
"types",
"types-ts3.8"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./build/types/index.d.ts",
"default": "./build/esm/index.js"
},
"require": {
"types": "./build/types/index.d.ts",
"default": "./build/cjs/index.js"
}
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"lint:fix": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --fix --type-aware",
"lint": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --type-aware",
"build": "run-s build:transpile build:types",
"build:tarball": "run-s build:transpile build:types",
"build:dev": "yarn build",
"build:transpile": "rollup -c rollup.npm.config.mjs",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rimraf -g ./node_modules ./build"
},
"peerDependencies": {
"@playwright/test": "~1.56.0"
},
"dependencies": {
"express": "^4.21.2"
},
"devDependencies": {
"@playwright/test": "~1.56.0",
"@sentry/core": "10.46.0",
"eslint-plugin-regexp": "^1.15.0"
},
"volta": {
"extends": "../../package.json"
}
}