This commit is contained in:
MarSeventh
2024-07-19 23:26:06 +08:00
commit 4e0c55d1f9
1401 changed files with 69819 additions and 0 deletions

43
node_modules/@sentry/core/package.json generated vendored Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "@sentry/core",
"version": "7.114.0",
"description": "Base implementation for all Sentry JavaScript SDKs",
"repository": "git://github.com/getsentry/sentry-javascript.git",
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/core",
"author": "Sentry",
"license": "MIT",
"engines": {
"node": ">=8"
},
"files": [
"cjs",
"esm",
"types",
"types-ts3.8"
],
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"typesVersions": {
"<4.9": {
"types/index.d.ts": [
"types-ts3.8/index.d.ts"
]
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sentry/types": "7.114.0",
"@sentry/utils": "7.114.0"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
},
"sideEffects": false
}