-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.89 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
{
"name": "@rlanz/sentry",
"description": "A wrapper around the Sentry SDK to make it easier to use in a AdonisJS application",
"version": "0.1.0",
"engines": {
"node": ">= 20.11.0"
},
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./middleware": "./build/src/middleware.js",
"./provider": "./build/providers/sentry_provider.js"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"postbuild": "npm run copy:templates",
"prepublishOnly": "npm run build",
"release": "npx release-it",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@poppinss/utils": "^6.7.3",
"@sentry/node": "^7.116.0"
},
"devDependencies": {
"@adonisjs/assembler": "^7.6.1",
"@adonisjs/core": "^6.9.0",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@types/node": "^20.13.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"prettier": "^3.3.0",
"release-it": "^17.3.0",
"typescript": "^5.4.5"
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"license": "MIT",
"keywords": [
"sentry",
"adonisjs",
"adonis"
],
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
}
}