-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "inline-email",
"version": "3.0.1",
"description": "Modern email template compilation and rendering for safe HTML email.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"docs/assets",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "rm -rf dist",
"examples": "npm run build && node scripts/render-examples.js",
"examples:serve": "npm run examples && node scripts/serve-examples.js",
"examples:auth": "npm run examples",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm run build",
"test": "vitest run",
"test:visual": "playwright test",
"test:watch": "vitest"
},
"bin": {
"inline-email": "dist/cli.js"
},
"author": "Dan Sabin <dan@freethinking.it>",
"license": "MIT",
"dependencies": {
"juice": "^12.1.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^20.14.15",
"typescript": "^5.5.4",
"vitest": "^4.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freethinkingit/inline-email.git"
},
"keywords": [
"email",
"html-email",
"inline",
"template",
"email-templates",
"responsive-email",
"ses",
"cli"
],
"bugs": {
"url": "https://github.com/freethinkingit/inline-email/issues"
},
"homepage": "https://github.com/freethinkingit/inline-email#readme",
"engines": {
"node": ">=20.0.0"
}
}