forked from kripod/react-polymorphic-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 976 Bytes
/
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
{
"name": "react-polymorphic-types",
"version": "2.0.0",
"description": "Zero-runtime polymorphic component definitions for React",
"keywords": [
"react",
"polymorphism",
"as-prop",
"typescript"
],
"homepage": "https://github.com/kripod/react-polymorphic-types#readme",
"bugs": {
"url": "https://github.com/kripod/react-polymorphic-types/issues"
},
"repository": "github:kripod/react-polymorphic-types",
"license": "MIT",
"author": "Kristóf Poduszló <kripod@protonmail.com>",
"sideEffects": false,
"exports": {
"types": "./index.d.ts",
"default": "./empty.js",
"import": "./empty.js"
},
"main": "./empty.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"empty.js"
],
"scripts": {
"format": "prettier --ignore-path ./.gitignore --write .",
"type-check": "tsc"
},
"devDependencies": {
"@types/react": "^17.0.14",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@types/react": ">=16.8.6"
}
}