-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.2 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.2 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@kaspersky/hexa-ui-icons",
"version": "2.13.6",
"description": "Kaspersky Hexa UI Design System icon pack",
"author": "AO Kaspersky Lab",
"license": "Apache-2.0",
"homepage": "https://github.com/KasperskyLab/uif#readme",
"repository": "KasperskyLab/uif",
"bugs": {
"url": "https://github.com/KasperskyLab/uif/issues"
},
"module": "esm",
"types": "index.d.ts",
"tsConfig": "tsconfig.json",
"sideEffects": false,
"exports": {
"./*": {
"import": "./esm/*/index.js",
"require": "./*/index.js"
}
},
"typesVersions": {
">=1.5.1": {
"*": [
"./*/index.d.ts"
]
}
},
"files": [
"8/**/*",
"10/**/*",
"12/**/*",
"16/**/*",
"16x12/**/*",
"24/**/*",
"28x20/**/*",
"32/**/*",
"40/**/*",
"48/**/*",
"64x42/**/*",
"index.d.ts",
"index.js",
"helpers/resolveColorToken.js",
"esm/**/*"
],
"scripts": {
"iconsArtifacts:clean": "rimraf index.* && rimraf 8/** && rimraf 12/** && rimraf 16/** && rimraf 24/** && rimraf 32/** && rimraf 40/** && rimraf 48/** && rimraf esm/**",
"icons:clean": "rimraf src/index.ts && rimraf src/types/index.ts && rimraf src/8/** && rimraf src/10/** && rimraf src/12/** && rimraf src/16/** && rimraf src/16x12/** && rimraf src/24/** && rimraf src/28x20/** && rimraf src/32/** && rimraf src/40/** && rimraf src/48/** && rimraf src/64x42/**",
"icons:prepare": "node src/helpers/prepareIconsFolders.js",
"icons:transform": "svgr --no-svgo --config-file ./svgr.config.js --out-dir src -- ./src/iconsSVGs",
"icons:updateImports": "rimraf src/types/index.ts && node src/helpers/updateImports.js",
"icons:create": "npm run icons:clean && npm run icons:prepare && npm run icons:transform && npm run icons:updateImports",
"icons:tsx-create": "npm run icons:clean && npm run icons:transform && npm run iconsArtifacts:clean && npm run icons:updateImports",
"icons:rollup": "rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run icons:tsx-create && npm run icons:rollup",
"build": "npm run icons:create && npm run prepublishOnly",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "npm run lint && npm run icons:tsx-create && jest",
"storybook": "npm run icons:tsx-create && storybook dev -p 6006",
"build-storybook": "npm run icons:tsx-create && storybook build -o storybook/hexa-ui-icons"
},
"keywords": [],
"devDependencies": {
"@kaspersky/dev-tools": "3.4.4",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-multi-entry": "7.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "1.0.0",
"@storybook/addon-essentials": "8.6.4",
"@storybook/addon-interactions": "8.6.4",
"@storybook/addon-links": "8.6.4",
"@storybook/blocks": "8.6.4",
"@storybook/react": "8.6.4",
"@storybook/react-vite": "8.6.4",
"@storybook/testing-library": "0.0.14-next.2",
"@svgr/cli": "6.2.1",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.14",
"@types/node": "20.3.2",
"@types/react": "18.2.42",
"@types/react-modal": "3.16.0",
"css-loader": "6.8.1",
"eslint": "^9.0.0",
"eslint-plugin-storybook": "0.6.12",
"gulp": "5.0.1",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"prettier": "3.8.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-code-blocks": "0.1.6",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"rollup": "4.59.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.36.0",
"storybook": "8.6.18",
"ts-jest": "29.4.0",
"typescript": "5.4.5"
},
"peerDependencies": {
"@kaspersky/hexa-ui-core": "0.x",
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"overrides": {
"es5-ext": "0.10.46",
"@babel/runtime": "7.26.10",
"is-core-module": "2.8.1",
"json5": "2.2.2",
"prismjs": "1.30.0",
"regenerator-runtime": "0.13.9",
"resolve": "1.22.0"
}
}