-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "@sentry/fullstory",
"version": "5.0.0",
"description": "The Sentry-FullStory integration creates a link from the Sentry Error to the FullStory replay. It also creates a link from the FullStory event to the Sentry error.",
"repository": "git://github.com/getsentry/sentry-fullstory.git",
"homepage": "https://github.com/getsentry/sentry-fullstory#readme",
"author": "Sentry",
"license": "MIT",
"engines": {
"node": ">=14.18"
},
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/es/index.d.ts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@sentry/core": "10.x"
},
"dependencies": {},
"devDependencies": {
"@sentry/core": "^10.22.0",
"bunchee": "^6.6.2",
"typescript": "5.8.2"
},
"scripts": {
"build": "bunchee",
"typecheck": "tsc --noEmit",
"watch": "bunchee -w"
},
"volta": {
"node": "22.14.0",
"yarn": "1.22.5"
},
"sideEffects": false
}