-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 993 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 993 Bytes
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
{
"name": "@jdevalk/emdash-plugin-lettermint",
"version": "0.4.0",
"description": "Lettermint email provider plugin for EmDash CMS",
"type": "module",
"main": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./sandbox": "./dist/sandbox-entry.mjs"
},
"files": [
"dist"
],
"keywords": [
"emdash",
"emdash-plugin",
"email",
"lettermint"
],
"author": "Joost de Valk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jdevalk/emdash-plugin-lettermint"
},
"scripts": {
"build": "tsdown src/index.ts src/sandbox-entry.ts --format esm --dts --clean",
"dev": "tsdown src/index.ts src/sandbox-entry.ts --format esm --dts --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"emdash": "^0.6.0"
},
"devDependencies": {
"emdash": "latest",
"tsdown": "^0.21.7",
"typescript": "^5.0.0"
}
}