-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
143 lines (143 loc) · 4 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@osenco/adonisjs-notifications",
"description": "The easiest way to send notifications in AdonisJS",
"version": "0.0.3",
"engines": {
"node": ">=20.0.0"
},
"main": "build/index.js",
"type": "module",
"files": [
"build",
"!build/bin",
"!build/tests"
],
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js",
"./commands": "./build/commands/main.js",
"./notification_provider": "./build/providers/notification_provider.js",
"./mixins/notifiable": "./build/src/mixins/notifiable.js",
"./services/main": "./build/services/main.js",
"./channels/database": "./build/src/channels/database.js",
"./channels/mail": "./build/src/channels/mail.js",
"./channels/fake": "./build/src/channels/fake.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "del-cli build",
"copy:templates": "copyfiles --up=1 \"stubs/**/**/*.stub\" build",
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
"postcompile": "npm run copy:templates && npm run index:commands",
"build": "npm run compile",
"release": "np",
"version": "npm run build",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"index:commands": "adonis-kit index build/commands",
"quick:test": "NODE_DEBUG=\"adonisjs:notification\" node --enable-source-maps --loader=ts-node/esm bin/test.ts",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json verful/notifications"
},
"devDependencies": {
"@adonisjs/assembler": "^7.5.2",
"@adonisjs/core": "^6.9.0",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/lucid": "^20.6.0",
"@adonisjs/mail": "^9.2.1",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@japa/assert": "^3.0.0",
"@japa/expect": "^3.0.2",
"@japa/expect-type": "^2.0.2",
"@japa/file-system": "^2.3.0",
"@japa/plugin-adonisjs": "^3.0.1",
"@japa/runner": "^3.1.4",
"@japa/snapshot": "^2.0.5",
"@poppinss/dev-utils": "^2.0.3",
"@swc/core": "^1.5.7",
"@types/luxon": "3.4.2",
"@types/node": "^20.12.12",
"@types/pluralize": "^0.0.33",
"c8": "^9.1.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.3.0",
"github-label-sync": "^2.3.1",
"husky": "^9.0.11",
"np": "^10.0.5",
"prettier": "^3.2.5",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@poppinss/manager": "^5.0.2",
"@poppinss/utils": "^6.7.3",
"fastq": "^1.17.1",
"luxon": "^3.4.4"
},
"peerDependencies": {
"@adonisjs/core": "^6.9.0",
"@adonisjs/lucid": "^20.6.0",
"@adonisjs/mail": "^9.2.1"
},
"peerDependenciesMeta": {
"@adonisjs/lucid": {
"optional": true
},
"@adonisjs/mail": {
"optional": true
}
},
"license": "MIT",
"repository": "https://github.com/osenco/adonisjs-notifications",
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**",
"backup/**",
"factories/**"
]
},
"tsup": {
"entry": [
"index.ts",
"src/types.ts",
"services/main.ts",
"src/mixins/notifiable.ts",
"src/mixins/has_database_notifications.ts",
"src/mixins/routes_notifications.ts",
"commands/make_channel.ts",
"commands/make_notification.ts",
"providers/notification_provider.ts",
"src/channels/database.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": true,
"target": "esnext"
}
}