@geira/iconfont 0.3.3 → 4.0.0
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 +95 -32
- package/dist/{images/favicon/favicon.ico → favicon.ico} +0 -0
- package/dist/geira-icons.css +315 -0
- package/dist/geira-icons.scss +303 -138
- package/dist/icons.json +265 -1567
- package/dist/index.html +496 -1
- package/dist/{images/favicon/android-chrome-512x512.png → logo.png} +0 -0
- package/package.json +15 -40
- package/tags.json +2119 -0
- package/.idea/geira-icons-tool.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -43
- package/clean.html +0 -1077
- package/dist/data.min.js +0 -2
- package/dist/data.min.js.map +0 -1
- package/dist/fonts/GeiraIcons-Regular-SVG.ttf +0 -0
- package/dist/fonts/GeiraIcons-Regular-SVG.woff2 +0 -0
- package/dist/geira-icons.min.css +0 -3
- package/dist/geira-icons.min.css.map +0 -1
- package/dist/geira-icons.min.js +0 -0
- package/dist/images/favicon/android-chrome-192x192.png +0 -0
- package/dist/images/favicon/apple-touch-icon.png +0 -0
- package/dist/images/favicon/browserconfig.xml +0 -9
- package/dist/images/favicon/favicon-16x16.png +0 -0
- package/dist/images/favicon/favicon-32x32.png +0 -0
- package/dist/images/favicon/mstile-150x150.png +0 -0
- package/dist/images/favicon/safari-pinned-tab.svg +0 -38
- package/dist/images/favicon/site.webmanifest +0 -19
- package/dist/main.min.js +0 -2
- package/dist/main.min.js.map +0 -1
- package/dist/styles.min.css +0 -3
- package/dist/styles.min.css.map +0 -1
- package/dist/styles.min.js +0 -0
- package/dist/usage.html +0 -1
- package/dist/utils.min.js +0 -2
- package/dist/utils.min.js.map +0 -1
- package/src/fonts/GeiraIcons-Regular-SVG.ttf +0 -0
- package/src/fonts/GeiraIcons-Regular-SVG.woff2 +0 -0
- package/src/fonts/GeiraIcons-Regular.ttf +0 -0
- package/src/fonts/GeiraIcons-Regular.woff +0 -0
- package/src/fonts/GeiraIcons-Regular.woff2 +0 -0
- package/src/images/favicon/android-chrome-192x192.png +0 -0
- package/src/images/favicon/android-chrome-512x512.png +0 -0
- package/src/images/favicon/apple-touch-icon.png +0 -0
- package/src/images/favicon/browserconfig.xml +0 -9
- package/src/images/favicon/favicon-16x16.png +0 -0
- package/src/images/favicon/favicon-32x32.png +0 -0
- package/src/images/favicon/favicon.ico +0 -0
- package/src/images/favicon/mstile-150x150.png +0 -0
- package/src/images/favicon/safari-pinned-tab.svg +0 -38
- package/src/images/favicon/site.webmanifest +0 -19
- package/src/index.html +0 -50
- package/src/js/data.js +0 -1568
- package/src/js/data.json +0 -1
- package/src/js/flutter.txt +0 -261
- package/src/js/flutter2.txt +0 -261
- package/src/js/icons.json +0 -1568
- package/src/js/script.js +0 -51
- package/src/js/utils.js +0 -74
- package/src/scss/geira-icons.scss +0 -150
- package/src/scss/styles.scss +0 -286
- package/src/usage.html +0 -376
- package/webpack.config.js +0 -100
package/package.json
CHANGED
|
@@ -1,35 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geira/iconfont",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Geira Icon Font",
|
|
5
|
-
"main": "dist/geira-icons.
|
|
5
|
+
"main": "dist/geira-icons.css",
|
|
6
6
|
"scripts": {
|
|
7
|
+
"start": "node cli.js",
|
|
8
|
+
"build": "node build.js",
|
|
9
|
+
"dev": "node server.js",
|
|
10
|
+
"deploy": "node build.js && node deploy.js",
|
|
7
11
|
"clean": "rm -rf dist",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"generate-flutter2": "node tools/generate-flutter2",
|
|
13
|
-
"build-web": "NODE_OPTIONS=--openssl-legacy-provider webpack",
|
|
14
|
-
"start": "webpack serve --mode development --open",
|
|
15
|
-
"dev": "npm run process-iconfont && npm run generate-assets && npm run start",
|
|
16
|
-
"build": "npm run clean && npm run process-iconfont && npm run generate-assets && npm run build-web",
|
|
17
|
-
"deploy": "npm run build && rsync -av dist/ user@host:/path/to/hosting",
|
|
18
|
-
"prepare": "npm run build"
|
|
19
|
-
},
|
|
20
|
-
"scripts-info": {
|
|
21
|
-
"clean": "Removes the 'dist' folder to ensure a clean build.",
|
|
22
|
-
"process-iconfont": "Processes the icon font files and generates base assets.",
|
|
23
|
-
"generate-assets": "Runs all asset generation scripts for mobile (JSON, Flutter, Flutter2).",
|
|
24
|
-
"generate-json": "Generates the JSON file for icon metadata.",
|
|
25
|
-
"generate-flutter": "Generates Flutter-compatible icon files.",
|
|
26
|
-
"generate-flutter2": "Generates an additional set of Flutter icon files.",
|
|
27
|
-
"build-web": "Compiles the web showcase using Webpack.",
|
|
28
|
-
"start": "Starts the development server with live reload.",
|
|
29
|
-
"dev": "Runs the icon processing, asset generation, and starts the dev server.",
|
|
30
|
-
"build": "Performs a full clean build (icons, assets, and web).",
|
|
31
|
-
"deploy": "Builds the project and deploys it to the hosting server (adjust path/user).",
|
|
32
|
-
"prepare": "Automatically triggers before publishing the package (npm)."
|
|
12
|
+
"prepare": "node build.js",
|
|
13
|
+
"release:patch": "npm version patch && node build.js && npm publish",
|
|
14
|
+
"release:minor": "npm version minor && node build.js && npm publish",
|
|
15
|
+
"release:major": "npm version major && node build.js && npm publish"
|
|
33
16
|
},
|
|
34
17
|
"keywords": [
|
|
35
18
|
"geira",
|
|
@@ -66,17 +49,9 @@
|
|
|
66
49
|
"type": "git",
|
|
67
50
|
"url": "https://github.com/liontude/geira-icons-tool"
|
|
68
51
|
},
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"html-webpack-plugin": "^5.6.3",
|
|
74
|
-
"mini-css-extract-plugin": "^2.9.2",
|
|
75
|
-
"sass": "^1.84.0",
|
|
76
|
-
"sass-loader": "^16.0.4",
|
|
77
|
-
"style-loader": "^4.0.0",
|
|
78
|
-
"webpack": "^5.97.1",
|
|
79
|
-
"webpack-cli": "^6.0.1",
|
|
80
|
-
"webpack-dev-server": "^5.2.0"
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"dotenv": "^16.4.7",
|
|
54
|
+
"opentype.js": "^2.0.0",
|
|
55
|
+
"ssh2-sftp-client": "^11.0.0"
|
|
81
56
|
}
|
|
82
|
-
}
|
|
57
|
+
}
|