-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
89 lines (89 loc) · 2.35 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
{
"name": "react-polymorphic-box",
"version": "3.0.3",
"description": "Building blocks for strongly typed polymorphic components in React.",
"keywords": [
"react",
"polymorphism",
"typescript",
"component"
],
"homepage": "https://github.com/kripod/react-polymorphic-box#readme",
"bugs": {
"url": "https://github.com/kripod/react-polymorphic-box/issues"
},
"repository": "github:kripod/react-polymorphic-box",
"license": "MIT",
"author": "Kristóf Poduszló <kripod@protonmail.com>",
"sideEffects": false,
"exports": {
"import": "./dist/esm/bundle.min.js",
"require": "./dist/cjs/bundle.min.js"
},
"main": "./dist/cjs/bundle.min.js",
"module": "./dist/esm/bundle.min.js",
"types": "./dist/cjs/bundle.min.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rollup --config --sourcemap",
"clean": "git clean -fdx -e node_modules",
"commit": "git-cz",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js}\"",
"release": "standard-version",
"type-check": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,json,yml,md}": "prettier --write",
"*.{ts,tsx,js}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/react": "^16.9.51",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@wessberg/rollup-plugin-ts": "^1.3.5",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-typescript": "^11.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-plugin-packagejson": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.29.0",
"standard-version": "^9.0.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": ">=16.3"
}
}