-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "react-external-link",
"license": "MIT",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"repository": {
"url": "https://github.com/acelaya/react-external-link",
"type": "git"
},
"author": {
"name": "Alejandro Celaya",
"email": "[email protected]",
"url": "https://www.alejandrocelaya.com"
},
"keywords": [
"react",
"link",
"external",
"target",
"noopener",
"noreferrer"
],
"scripts": {
"build": "vite build",
"test": "vitest run",
"test:ci": "npm run test -- --coverage",
"lint": "eslint ./src ./test vite.config.ts",
"lint:fix": "npm run lint -- --fix",
"types": "tsc"
},
"devDependencies": {
"@shlinkio/eslint-config-js-coding-standard": "~3.2.1",
"@stylistic/eslint-plugin": "^2.12.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.6",
"eslint": "^9.17.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.0.2"
},
"peerDependencies": {
"react": "^19.0 || ^18.0",
"react-dom": "^19.0 || ^18.0"
},
"files": [
"dist"
]
}