-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 766 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 766 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
{
"name": "encode-email",
"private": true,
"version": "1.0.0",
"description": "A simple email encoder built with TypeScript and Vite.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "~5.9.3",
"vite": "^7.2.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jennifert/javascript-email-encode.git"
},
"homepage": "https://github.com/jennifert/javascript-email-encode#readme",
"bugs": {
"url": "https://github.com/jennifert/javascript-email-encode/issues"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}