-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "directus-extension-system-email-i18n",
"version": "1.1.11",
"description": "Directus CMS extension to translate system emails (password reset, user registration and invitation)",
"author": {
"email": "code@jekuer.com",
"name": "Jens Kuerschner"
},
"license": "MIT",
"icon": "translate",
"keywords": [
"directus",
"directus-extension",
"directus-extension-hook",
"i18n",
"mail",
"translation",
"hook"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jekuer/directus-extension-system-email-i18n.git"
},
"bugs": {
"url": "https://github.com/jekuer/directus-extension-system-email-i18n/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/jekuer/directus-extension-system-email-i18n",
"type": "module",
"files": [
"dist"
],
"directus:extension": {
"type": "hook",
"path": "dist/index.js",
"source": "src/index.ts",
"host": "10.10.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link"
},
"devDependencies": {
"@directus/extensions-sdk": "17.0.11",
"@types/ip": "^1.1.3",
"@types/node": "^25.4.0",
"typescript": "^5.9.3"
}
}