-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "@reacticons/bootstrap-icons",
"version": "1.9.1",
"bootstrapIconsVersion": "v1.9.1",
"license": "MIT",
"private": false,
"author": "Alexander Schau <alexander@schau.email> (https://alexanderschau.com/)",
"repository": {
"type": "git",
"url": "https://github.com/alexanderschau/react-bootstrap-icons.git"
},
"keywords": [
"bootstrap",
"react",
"icons",
"typescript"
],
"main": "lib/components/Icon.js",
"files": [
"lib/components/**/*"
],
"types": "./lib/components/Icon.d.ts",
"exports": {
"import": "./lib/components/Icon.js"
},
"scripts": {
"build": "bash run-build.sh",
"build-typescript": "tsc",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext js"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.7.4"
}
}