-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "@ciolabs/html-email-formatter",
"version": "0.0.5",
"description": "Format and prettify HTML email content",
"author": "Customer.io <win@customer.io>",
"license": "Apache-2.0 WITH Commons-Clause",
"repository": {
"type": "git",
"url": "https://github.com/customerio/ciolabs.git",
"directory": "packages/html-email-formatter"
},
"homepage": "https://github.com/customerio/ciolabs/tree/main/packages/html-email-formatter#readme",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"test": "vitest run"
},
"dependencies": {
"@ciolabs/html-find-conditional-comments": "workspace:*",
"@ciolabs/html-preserve-comment-whitespace": "workspace:*",
"@types/js-beautify": "^1.13.3",
"@types/pretty": "^2.0.1",
"js-beautify": "~1.13.4",
"pretty": "^2.0.0",
"ranges-apply": "^7.0.16"
}
}