-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "@fortawesome/fa-icon-chooser-react",
"sideEffects": false,
"version": "0.10.0",
"license": "MIT",
"private": false,
"description": "React specific wrapper for @fortawesome/fa-icon-chooser",
"repository": {
"type": "git",
"url": "https://github.com/FortAwesome/fa-icon-chooser.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "node ./__tests__/react-library.test.js",
"build": "npm run tsc",
"tsc": "tsc -p . --outDir ./dist"
},
"files": [
"dist"
],
"contributors": [
"Mike Wilkerson <mike@fontawesome.com>",
"Frances Botsford <frances@fontawesome.com>",
"Kelsey Jackson <kelseythej@gmail.com>",
"Jason Lundien <jason@fontawesome.com>"
],
"devDependencies": {
"@types/react": "^19.0.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@fortawesome/fa-icon-chooser": "0.10.0",
"@stencil/react-output-target": "^0.8.2"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
}
}