-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.27 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@zener/nepali-datepicker-react",
"author": "Bikash Ojha",
"license": "MIT",
"version": "1.5.1",
"description": "Nepali Datepicker React is a lightweight, highly customizable, and feature-rich datepicker component, specifically designed for handling Nepali dates in React.js applications. It offers seamless integration, intuitive user experience, and extensive configuration options.",
"private": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"sideEffects": false,
"exports": {
"./index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
},
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tulsiojha/nepali-datepicker-react.git"
},
"keywords": [
"react",
"input",
"control",
"form",
"ui",
"date-picker",
"date-api",
"customize",
"nepali",
"AD",
"BS"
],
"files": ["dist", "README.md", "LICENSE"],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run clean && npm run build:css && node build.mjs && npm run tsc",
"pack": "npm run build && npm pack --pack-destination ./out",
"clean": "rimraf dist",
"dev:build": "npm run build",
"tsc": "tsc --emitDeclarationOnly -p tsconfig-compile.json --outDir ./dist/@types",
"build:css": "tailwindcss -i ./src/scss/build.scss -o ./src/css/index.scss",
"release": "pnpm build && npm publish"
},
"dependencies": {
"@radix-ui/react-portal": "^1.1.1",
"@zener/nepali-date": "^1.1.4",
"classnames": "^2.3.2",
"framer-motion": "^10.16.4"
},
"peerDependencies": {
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.14",
"react": "^18.2.0 || ^17.0.0 || ^16.0.0"
},
"devDependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"esbuild": "^0.19.2",
"esbuild-sass-plugin": "^2.16.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-jsconfig": "^1.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"glob": "^11.0.0",
"prettier": "^2.8.8",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"rimraf": "^5.0.1",
"tailwindcss": "^3.4.10",
"tsup": "^8.3.0",
"typescript": "^5.2.2"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/tulsiojha/nepali-datepicker-react/issues"
},
"homepage": "https://nepali-datepicker-react.ojhabikash.com.np/"
}