This repository was archived by the owner on Mar 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@culur/antd-number-picker",
"description": "Antd Number Picker",
"version": "0.0.6",
"author": "Phạm Hồng Phúc <phamhongphuc.info@gmail.com>",
"license": "GNU GPLv3",
"keywords": [
"antd",
"react",
"component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/culur/antd-number-picker.git"
},
"bugs": {
"url": "https://github.com/culur/antd-number-picker/issues"
},
"scripts": {
"dev": "concurrently \"yarn build --watch\" \"yarn storybook\" \"yarn test\" ",
"build": "tsup --onSuccess \"yarn link:self\"",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"{src,tests}/**/*.+(ts|js|tsx)\"",
"lint:fix": "yarn lint --fix && prettier --write .",
"test": "vitest",
"test:ci": "vitest run --coverage",
"prepare": "husky install",
"commit": "cz",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "storybook-to-ghpages",
"release": "yarn build && yarn release-it",
"link:self": "yarn yalc publish && npm link"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"packageManager": "yarn@3.6.4",
"volta": {
"node": "20.9.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@babel/preset-typescript": "7.23.2",
"@commitlint/cli": "18.0.0",
"@commitlint/config-conventional": "18.0.0",
"@storybook/addon-docs": "^7.4.5",
"@storybook/addon-essentials": "7.5.0",
"@storybook/addon-interactions": "7.5.0",
"@storybook/addon-links": "7.5.0",
"@storybook/addon-storysource": "^7.4.5",
"@storybook/blocks": "7.5.0",
"@storybook/react": "7.5.0",
"@storybook/react-webpack5": "7.5.0",
"@storybook/storybook-deployer": "2.8.16",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/node": "20.8.7",
"@types/react": "18.2.29",
"@types/react-dom": "18.2.13",
"@types/react-test-renderer": "18.0.4",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.5",
"antd": "^5.9.3",
"babel-loader": "9.1.3",
"commitizen": "^4.3.0",
"concurrently": "8.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sort-class-members": "^1.18.0",
"eslint-plugin-storybook": "0.6.15",
"eslint-plugin-typescript-sort-keys": "3.1.0",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "15.0.1",
"prettier": "3.0.3",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"release-it": "16.2.1",
"storybook": "7.5.0",
"tsup": "7.2.0",
"typescript": "5.2.2",
"vitest": "^0.34.5",
"yalc": "1.0.0-pre.53"
},
"peerDependencies": {
"antd": ">=5.6.4",
"react": ">=17",
"react-dom": ">=17"
},
"resolutions": {
"glob-parent": ">=5.1.2",
"parse-url": ">=8.1.0",
"semver": ">=7.5.2",
"trim": ">=0.0.3",
"trim-newlines": ">=3.0.1",
"yaml": ">=2.2.2"
}
}