-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "@axa-ch/react-polymorphic-types",
"version": "1.3.0",
"description": "About Zero-runtime polymorphic component definitions for React",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
"import": "./index.js",
"types": "./index.d.ts"
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "prettier --check . && biome check .",
"postpublish": "git push && git push --tags",
"test": "tsc && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axa-ch/react-polymorphic-types.git"
},
"keywords": [
"react",
"polymorphic",
"as",
"typescript"
],
"author": "AXA (https://axa.ch)",
"maintainers": [
{
"name": "Gianluca Guarini",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/axa-ch/react-polymorphic-types/issues"
},
"homepage": "https://github.com/axa-ch/react-polymorphic-types#readme",
"devDependencies": {
"@axa-ch/easy-config": "3.0.0",
"@biomejs/biome": "1.9.4",
"framer-motion": "^11.16.0",
"prettier": "3.4.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@types/react": "^18.3.18",
"react": "^18.3.1"
}
}