-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "react-anpicker",
"version": "2.0.18",
"private": false,
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"description": "a react date picker for supporting persian dates",
"author": "Shahrooz Bazrafshan <kingofday.b@gmail.com> (https://kingofday.ir/)",
"keywords": [
"date",
"picker",
"persian",
"jalaali"
],
"repository": {
"type": "git",
"url": "https://github.com/kingofday/react-anpicker"
},
"scripts": {
"build": "yarn sass && yarn build:esm && yarn build:cjs && yarn copy-files rm -rf ./dist",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"sass": "sass --no-source-map --style=compressed src/components",
"clean": "rm -rf ./dist",
"copy-files": "copyfiles -f \"./src/**/*.css\" \"dist/esm/components\""
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.4",
"@types/react": "^18.0.18",
"@types/react-dom": "18.0.6",
"copyfiles": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.53.0",
"typescript": "^4.4.2"
},
"files": [
"/dist"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"react-anpicker": "^1.3.5"
}
}