-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "directus-extension-system-email-i18n",
"version": "1.1.0",
"description": "Directus CMS extension to translate system emails (password reset, user registration and invitation)",
"author": {
"email": "[email protected]",
"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": "12.1.4",
"@types/ip": "^1.1.3",
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
},
"dependencies": {
"ip": "^2.0.1"
}
}