-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
54
{
"name": "@supabase/sentry-js-integration",
"version": "0.3.0",
"description": "Supabase integration for Sentry JavaScript SDK",
"license": "MIT",
"homepage": "https://github.com/supabase-community/sentry-integration-js",
"repository": {
"type": "git",
"url": "https://github.com/supabase-community/sentry-integration-js.git"
},
"author": {
"name": "Kamil Ogórek",
"email": "kamil@supabase.io",
"url": "https://supabase.com"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"files": [
"index.js",
"index.d.ts",
"common.js",
"v7.js",
"v8.js"
],
"scripts": {
"lint": "npx eslint .",
"test": "node --test tests/**/*.test.js",
"test:watch": "node --watch --test tests/**/*.test.js"
},
"peerDependencies": {
"@supabase/supabase-js": "2.x"
},
"devDependencies": {
"@supabase/supabase-js": "2.45.2",
"eslint": "8.57.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"shared-node-browser": true,
"es2020": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}
}