-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "@toruslabs/loglevel-sentry",
"version": "7.0.1",
"description": "A package to allow logging and monitoring with sentry",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/loglevelSentry.umd.min.js",
"jsdelivr": "dist/loglevelSentry.umd.min.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "^7.x",
"@sentry/core": "^8.x",
"@sentry/types": "^8.x"
},
"dependencies": {
"loglevel": "^1.9.1",
"@sentry/utils": "^8.25.0"
},
"devDependencies": {
"@sentry/core": "^8.25.0",
"@sentry/types": "^8.25.0",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.3",
"@toruslabs/torus-scripts": "^6.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"author": "Torus Labs",
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/loglevel-sentry.git"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json}": [
"prettier --write"
]
},
"keywords": [
"loglevel",
"sentry",
"torus"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/torusresearch/loglevel-sentry/issues"
},
"homepage": "https://github.com/torusresearch/loglevel-sentry#readme",
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}