-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (55 loc) · 1.66 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
{
"name": "pdf-front-validator",
"description": "This library was created to validate real type of a document PDF on front-end.",
"version": "1.0.1",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickgratao/pdf-front-validator"
},
"homepage": "https://pdf-front-validator.vercel.app/",
"keywords": ["frontend pdf", "pdf validate", "pdf validator", "pdf front", "react pdf", "pdf valid", "valid pdf", "pdf valid front", "is valid pdf", "is valid react pdf", "pdf", "valid"],
"author": "Patrick Gratão",
"license": "UNLICENSED",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.2",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/ui": "^0.34.6",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^12.10.3",
"prettier": "3.1.0",
"typescript": "^5.3.2",
"vite": "^5.0.4",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"printWidth": 80,
"endOfLine": "auto"
}
}