-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
137 lines (137 loc) · 4.4 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
130
131
132
133
134
135
136
137
{
"name": "@sentry/capacitor",
"homepage": "https://github.com/getsentry/sentry-capacitor",
"repository": {
"type": "git",
"url": "https://github.com/getsentry/sentry-capacitor"
},
"version": "1.0.2",
"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:es8",
"build:esm": "tsc -p tsconfig.esm.json",
"build:es8": "tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"clean": "rimraf ./dist ./coverage",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"fix": "eslint --fix test/* src/*",
"swiftlint": "node-swiftlint",
"prepack": "yarn run build",
"postinstall": "node scripts/check-siblings.js",
"bump:v6": "cd example/ionic-angular-v6 && yalc link @sentry/capacitor && yarn install --check-files && yarn build && yarn run bump:sample-pod && npx cap sync",
"bump:v5": "cd example/ionic-angular-v5 && yalc link @sentry/capacitor && yarn install --check-files && yarn build && yarn run bump:sample-pod && npx cap sync",
"bump:v4": "cd example/ionic-angular-v4 && yalc link @sentry/capacitor && yalc add broken_module && yarn install --check-files && yarn run build && yarn bump:sample-pod && npx cap sync",
"bump:v3": "cd example/ionic-angular-v3 && yalc link @sentry/capacitor && yarn install --check-files && yarn run build && yarn bump:sample-pod && npx cap sync",
"bump:sample-vue": "cd example/ionic-vue3 && yalc link @sentry/capacitor && yarn install --check-files && ionic build && yarn run bump:sample-pod && npx cap sync",
"bump:samples": "yalc publish --sig && yarn concurrently --kill-others-on-fail \"yarn run bump:v6\" \"yarn run bump:v5\" \"yarn run bump:v4\" \"yarn run bump:v3\" \"yarn run bump:sample-vue\""
},
"keywords": [
"capacitor",
"plugin",
"native"
],
"publishConfig": {
"access": "public"
},
"author": "Sentry Team and Contributors",
"license": "MIT",
"peerDependencies": {
"@capacitor/core": ">=3.0.0",
"@sentry/angular": "8.37.1",
"@sentry/react": "8.37.1",
"@sentry/vue": "8.37.1"
},
"peerDependenciesMeta": {
"@sentry/angular": {
"optional": true
},
"@sentry/react": {
"optional": true
},
"@sentry/vue": {
"optional": true
}
},
"dependencies": {
"@sentry/browser": "8.37.1",
"@sentry/core": "8.37.1",
"@sentry/types": "8.37.1",
"@sentry/utils": "8.37.1"
},
"devDependencies": {
"@capacitor/android": "^3.0.1 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"@capacitor/core": "^3.0.1 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"@capacitor/ios": "^3.0.1 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"@ionic/prettier-config": "^1.0.0",
"@sentry-internal/eslint-config-sdk": "8.37.1",
"@sentry-internal/eslint-plugin-sdk": "8.37.1",
"@sentry-internal/typescript": "8.37.1",
"@sentry/wizard": "3.34.2",
"@types/jest": "^29.5.3",
"concurrently": "^8.2.2",
"eslint": "^7.13.0",
"jest": "^29.6.2",
"jest-extended": "^4.0.2",
"prettier": "^3.3.2",
"prettier-plugin-java": "^2.6.0",
"replace-in-file": "^6.2.0",
"rimraf": "^5.0.1",
"swiftlint": "^2.0.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.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"
},
"setupFilesAfterEnv": [
"jest-extended/all"
],
"globals": {
"__DEV__": true,
"ts-jest": {
"tsconfig": "./tsconfig.json",
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/sample/"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.(ts|tsx)"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}