-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.28 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
85
86
87
88
89
90
{
"name": "@akcybex/react",
"version": "1.0.3",
"description": "React essential components to help in building any kind of react, next or gatsby app.",
"author": "AKCybex",
"license": "MIT",
"keywords": [
"react",
"components",
"seo"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/react.umd.js",
"module": "./dist/react.es.js",
"exports": {
".": {
"import": "./dist/react.es.js",
"require": "./dist/react.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"watch": "vitest",
"coverage": "vitest run --coverage"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"sourceType": "module"
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.5",
"@semantic-release/npm": "^11.0.2"
},
"dependencies": {
"@testing-library/dom": "^8.20.0",
"@testing-library/react": "^13.4.0",
"@vitejs/plugin-react": "^3.0.1",
"c8": "^7.12.0",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"jsdom": "^21.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"vite": "^4.0.4",
"vitest": "^0.28.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/akcybex/react.git"
},
"bugs": {
"url": "https://github.com/akcybex/react/issues",
"email": "contact@akcybex.com"
}
}