sales-frontend-sentry 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # sentry
2
+
3
+ - 센트리 관련 패키지
package/dist/index.cjs ADDED
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+
3
+ var nextjs = require('@sentry/nextjs');
4
+
5
+
6
+
7
+ Object.keys(nextjs).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return nextjs[k]; }
11
+ });
12
+ });
13
+ //# sourceMappingURL=index.cjs.map
14
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ export * from '@sentry/nextjs';
@@ -0,0 +1 @@
1
+ export * from '@sentry/nextjs';
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from '@sentry/nextjs';
2
+ //# sourceMappingURL=index.js.map
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "sales-frontend-sentry",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.cts",
19
+ "default": "./dist/index.cjs"
20
+ }
21
+ }
22
+ },
23
+ "dependencies": {
24
+ "sales-frontend-utils": "^0.0.56"
25
+ },
26
+ "devDependencies": {
27
+ "@sentry/nextjs": "^10.33.0",
28
+ "@types/node": "^22.14.1",
29
+ "tsup": "^8.4.0",
30
+ "typescript": "5.8.2",
31
+ "eslint-config-sales-frontend-eslint-config-v8": "^0.0.7",
32
+ "sales-frontend-typescript-config": "0.0.2"
33
+ },
34
+ "peerDependencies": {
35
+ "@sentry/nextjs": ">=10.0.0 <11.0.0"
36
+ },
37
+ "scripts": {
38
+ "lint": "eslint . --max-warnings 0",
39
+ "generate:component": "turbo gen react-component",
40
+ "check-types": "tsc --noEmit",
41
+ "storybook": "tsup --watch",
42
+ "build": "tsup",
43
+ "release": "pnpm publish"
44
+ }
45
+ }