-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.63 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
91
{
"name": "rc-calendar-picker",
"version": "0.0.10",
"type": "module",
"files": [
"README.md",
"dist",
"LICENCE",
"package.json",
"index.d.ts"
],
"author": "noxxxx <brooks2harry@gmail.com>",
"typings": "./dist/index.d.ts",
"main": "./dist/rc-calendar-picker.umd.cjs",
"module": "./dist/rc-calendar-picker.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/rc-calendar-picker.js",
"require": "./dist/rc-calendar-picker.umd.cjs"
},
"./style.css": "./dist/style.css",
"./package.json": "./package.json"
},
"homepage": "https://github.com/noxxxxxxxx/calendar",
"repository": {
"type": "git",
"url": "https://github.com/noxxxxxxxx/calendar.git"
},
"keywords": [
"calendar-component",
"react-calendar",
"rc-calendar-picker",
"datetime",
"react"
],
"bugs": {
"url": "https://github.com/noxxxxxxxx/calendar/issues"
},
"scripts": {
"dev": "vite",
"test": "vitest",
"coverage": "vitest run --coverage.enabled=true",
"build": "tsc -b && vite build && npm run ts",
"lint": "tsc -b && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"ts": "tsc && rm dist/calendar.svg"
},
"peerDependencies": {
"dayjs": "^1.11.12",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-unicorn": "^51.0.1",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"sass": "^1.78.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.1.0",
"vitest": "^2.0.5"
},
"license": "MIT"
}