forked from HCL-TECH-SOFTWARE/enchanted-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.95 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
{
"name": "@hcl-software/enchanted-icons",
"version": "1.0.0",
"description": "Enchanted Icons is a collection of icons that are used in HCL Software products.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Mridul Shrivastava <[email protected]>",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/HCL-TECH-SOFTWARE/enchanted-icons#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/HCL-TECH-SOFTWARE/enchanted-icons.git"
},
"bugs": {
"url": "https://github.com/HCL-TECH-SOFTWARE/enchanted-icons/issues"
},
"keywords": [
"react",
"carbon",
"ts"
],
"contributors": [
"Angelo rick Asoy <[email protected]>",
"Hanjo Hagemeier <[email protected]>",
"Ruby ann Matias <[email protected]>",
"Felix Müller <[email protected]>",
"Elsa Pascual <[email protected]>",
"Utkarsh Srivastava <[email protected]>"
],
"scripts": {
"convert-svg-to-ts": "svgr --ext tsx -d src/apps/ svg/",
"build": "tsc",
"generate": "node builder.js",
"lint": "eslint --ext .ts,.tsx src",
"lint-fix": "eslint --ext .ts,.tsx --fix src"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-why": "^1.2.0",
"lodash": "^4.17.11",
"typescript": "^4.1.5"
},
"dependencies": {
"@carbon/icons": "11.27.0"
},
"peerDependencies": {
"@mui/material": "^5.10.10",
"react": "^18.2.0"
},
"engines": {
"node": ">=20.x"
},
"files": [
"dist/**/*"
]
}