@npm-questionpro/wick-ui-icon 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +108 -0
- package/dist/wu-icon.css +2329 -0
- package/dist/wu-icon.eot +0 -0
- package/dist/wu-icon.svg +6939 -0
- package/dist/wu-icon.ttf +0 -0
- package/dist/wu-icon.woff +0 -0
- package/dist/wu-icon.woff2 +0 -0
- package/package.json +42 -0
package/dist/wu-icon.ttf
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@npm-questionpro/wick-ui-icon",
|
|
3
|
+
"version": "1.3.1",
|
|
4
|
+
"description": "Icon font library with Material and custom icons for QuestionPro",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "dist/wu-icon.css",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./dist/wu-icon.css": "./dist/wu-icon.css"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node index.js",
|
|
16
|
+
"release:patch": "pnpm build && pnpm version patch && pnpm publish",
|
|
17
|
+
"release:minor": "pnpm build && pnpm version minor && pnpm publish",
|
|
18
|
+
"release:major": "pnpm build && pnpm version major && pnpm publish",
|
|
19
|
+
"mat:clone": "git clone https://github.com/google/material-design-icons.git",
|
|
20
|
+
"mat:pull": "git pull",
|
|
21
|
+
"mat:update": "cd material-design-icons && git pull && cd .. && node material.js && pnpm build"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"icons",
|
|
25
|
+
"font",
|
|
26
|
+
"icon-font",
|
|
27
|
+
"web-font",
|
|
28
|
+
"material-icons",
|
|
29
|
+
"custom-icons",
|
|
30
|
+
"questionpro"
|
|
31
|
+
],
|
|
32
|
+
"author": {
|
|
33
|
+
"name": "sifat160",
|
|
34
|
+
"url": "https://github.com/mahi160"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"svgtofont": "^6.2.0"
|
|
41
|
+
}
|
|
42
|
+
}
|