-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "typescript-mailbox-parser",
"version": "0.0.3",
"description": "Reliably get the display name, local, and domain parts of an email address",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "npx tsx test/tests.ts",
"docs:examples": "npx tsx examples.ts",
"fmt": "prettier --write \"**/*.{json,ts}\"",
"build:parser": "npx tspeg mailbox-computed.peg generated/parser.ts",
"build:compile": "npx tsup",
"build:all": "npx npm run build:parser && npx npm run build:compile"
},
"keywords": [
"email",
"rfc5322",
"mailbox",
"local part of email address",
"parse email address",
"parse mailbox",
"parse domain of email address",
"parse display name of email address",
"parser",
"email address parser",
"mailbox parser",
"typescript",
"ts"
],
"author": "Spencer Van Wessem Scorcelletti",
"license": "MIT",
"devDependencies": {
"@esbuild/darwin-arm64": "^0.25.10",
"@types/node": "^24.10.1",
"prettier": "^3.6.2",
"tspeg": "^3.3.2",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}