-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.71 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.71 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "calendar-simple",
"version": "1.2.0",
"type": "module",
"description": "A user-friendly calendar app for viewing, selecting, and managing dates with data management capabilities.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./dist/styles.css": "./dist/calendar-simple.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaganath-MSJ/CalendarSimple.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"keywords": [
"calendar",
"simple",
"calendar-simple"
],
"author": "jaganath-m-s",
"license": "MIT",
"dependencies": {
"calendarize": "^1.1.1",
"classnames": "^2.5.1",
"luxon": "^3.7.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.1",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-docs": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/luxon": "^3.7.1",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"ajv": "^8.18.0",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"storybook": "^10.3.5",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "npm:rolldown-vite@^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.3"
},
"peerDependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"overrides": {
"eslint": "$eslint",
"esbuild": "$esbuild"
}
}