-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 913 Bytes
/
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
{
"private": false,
"publishConfig": {
"access": "public"
},
"name": "oss-ui-icons",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"generate-icons": "node ./actions/generate-icons.mjs",
"build-font": "svgtofont --sources ./src/icons --output ./dist --fontName hlxico --config package.json",
"build": "npm run build-font && npm run generate-icons"
},
"svgtofont": {
"outSVGReact": false,
"outSVGReactNative": false,
"generateInfoData": false,
"emptyDist": true,
"useCSSVars": false,
"css": true,
"outSVGPath": false,
"classNamePrefix": "hi"
},
"files": [
"*"
],
"exports": {
"./style.css": {
"import": "./dist/hlxico.css"
},
"./icons.js": {
"import": "./icons.js"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"svgtofont": "^4.1.2"
}
}