-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@smastrom/react-email-autocomplete",
"version": "1.2.0",
"private": false,
"homepage": "https://react-email-autocomplete.netlify.app",
"bugs": {
"url": "https://github.com/smastrom/react-email-autocomplete/issues"
},
"description": "Headless email input field with custom suggestions. Inspired by european flight booking websites.",
"keywords": [
"react",
"react-email",
"react-email-autocomplete",
"react-autocomplete",
"react-email-autocomplete",
"react-email-component",
"email-component",
"email-autocomplete",
"email-input",
"email-suggestions",
"email-autocomplete"
],
"repository": {
"type": "git",
"url": "https://github.com/smastrom/react-email-autocomplete"
},
"license": "MIT",
"author": "Simone Mastromattei <smastrom@proton.me>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc && vite build",
"build:app": "tsc && vite build --mode app",
"dev": "vite",
"preview": "vite preview",
"test:unit": "vitest",
"test": "cypress run --component --browser chrome",
"test:gui": "cypress open --component",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css,json,md}": "prettier --write"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.1",
"axe-core": "^4.8.2",
"cypress": "^13.6.1",
"cypress-axe": "^1.5.0",
"cypress-real-events": "^1.11.0",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.4"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}