forked from getsentry/sentry-capacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.36 KB
/
package.json
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@sentry/capacitor",
"homepage": "https://github.com/getsentry/sentry-capacitor",
"repository": {
"type": "git",
"url": "https://github.com/getsentry/sentry-capacitor"
},
"version": "0.11.5",
"description": "Official Sentry SDK for Capacitor",
"types": "dist/esm/index.d.ts",
"main": "dist/build/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "yarn run clean && yarn run lint && yarn run build:all",
"build:all": "yarn run build:esm && yarn run build:es5",
"build:esm": "tsc -p tsconfig.esm.json",
"build:es5": "tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"clean": "rimraf ./dist ./coverage",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"swiftlint": "node-swiftlint",
"prepack": "yarn run build",
"postinstall": "node scripts/check-siblings.js",
"bump:v3": "yalc publish && cd example/ionic-angular && yalc add @sentry/capacitor && ionic build && npx cap sync",
"bump:v2": "yalc publish && cd example/ionic-angular-v2 && yalc add @sentry/capacitor && ionic build && npx cap sync"
},
"keywords": [
"capacitor",
"plugin",
"native"
],
"publishConfig": {
"access": "public"
},
"author": "Sentry Team and Contributors",
"license": "MIT",
"peerDependencies": {
"@capacitor/core": ">=3.0.0",
"@sentry/angular": "^7.56.0",
"@sentry/react": "^7.56.0",
"@sentry/vue": "^7.56.0"
},
"peerDependenciesMeta": {
"@sentry/angular": {
"optional": true
},
"@sentry/react": {
"optional": true
},
"@sentry/vue": {
"optional": true
}
},
"dependencies": {
"@sentry/browser": "^7.56.0",
"@sentry/core": "^7.56.0",
"@sentry/hub": "^7.56.0",
"@sentry/integrations": "^7.56.0",
"@sentry/tracing": "^7.56.0",
"@sentry/types": "^7.56.0",
"@sentry/utils": "^7.56.0"
},
"devDependencies": {
"@capacitor/android": "^3.0.1 || ^4.0.0 || ^5.0.0",
"@capacitor/core": "^3.0.1 || ^4.0.0 || ^5.0.0",
"@capacitor/ios": "^3.0.1 || ^4.0.0 || ^5.0.0",
"@ionic/prettier-config": "^1.0.0",
"@sentry-internal/eslint-config-sdk": "^7.56.0",
"@sentry-internal/eslint-plugin-sdk": "^7.56.0",
"@sentry/typescript": "5.20.1",
"@sentry/wizard": "3.2.3",
"@types/jest": "^26.0.15",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"prettier-plugin-java": "^0.8.0",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2",
"swiftlint": "^1.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"files": [
"dist/",
"ios/",
"android/",
"SentryCapacitor.podspec",
"scripts/check-siblings.js"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"bugs": {
"url": "https://github.com/getsentry/sentry-capacitor/issues"
},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"__DEV__": true,
"ts-jest": {
"tsconfig": "./tsconfig.json",
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/sample/"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.(ts|tsx)"
]
}
}