-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.58 KB
/
package.json
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
71
72
73
{
"name": "vue-letter",
"version": "0.2.0",
"description": "Display e-mail messages in your Vue projects.",
"main": "dist/vue-letter.umd.cjs",
"module": "dist/vue-letter.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"browser": {
"./sfc": "src/Letter.vue"
},
"exports": {
".": {
"require": "./dist/vue-letter.umd.cjs",
"import": "./dist/vue-letter.js",
"types": "./dist/main.d.ts"
}
},
"type": "module",
"typings": "dist/main.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "vite build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"__tests__/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.0",
"vue": "^3.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mat-sz/vue-letter.git"
},
"bugs": {
"url": "https://github.com/mat-sz/vue-letter/issues"
},
"homepage": "https://github.com/mat-sz/vue-letter",
"dependencies": {
"lettersanitizer": "^1.0.5"
},
"author": "Mat Sz <[email protected]>",
"license": "BSD-3-Clause-Clear",
"keywords": [
"vue",
"vue-component",
"email",
"e-mail",
"mail",
"mime-message",
"ui"
]
}