@ptlm-azulejo/icons 1.0.0-alpha.6
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/dist/azulejo-icons.css +1344 -0
- package/dist/azulejo-icons.html +4020 -0
- package/dist/azulejo-icons.json +442 -0
- package/dist/azulejo-icons.ts +1769 -0
- package/dist/azulejo-icons.woff2 +0 -0
- package/dist/index.js +1 -0
- package/dist/index.umd.cjs +1 -0
- package/package.json +45 -0
|
Binary file
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(n){typeof define=="function"&&define.amd?define(n):n()})(function(){"use strict"});
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ptlm-azulejo/icons",
|
|
3
|
+
"version": "1.0.0-alpha.6",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.umd.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"require": "./dist/index.umd.cjs"
|
|
11
|
+
},
|
|
12
|
+
"./style.css": "./dist/azulejo-icons.css",
|
|
13
|
+
"./icons.json": "./dist/azulejo-icons.json"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"generate:fonts": "mkdir -p dist && fantasticon src/svg --output dist --font-types woff2 --name azulejo-icons --prefix az --normalize --selector \".az\" && node scripts/patch-css.mjs",
|
|
17
|
+
"build": "vite build && yarn generate:fonts",
|
|
18
|
+
"test": "vitest --run --passWithNoTests",
|
|
19
|
+
"storybook": "yarn generate:fonts && storybook dev -p 6006",
|
|
20
|
+
"build-storybook": "storybook build"
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public",
|
|
24
|
+
"registry": "https://registry.npmjs.org"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/*"
|
|
28
|
+
],
|
|
29
|
+
"sideEffects": [
|
|
30
|
+
"./dist/azulejo-icons.css"
|
|
31
|
+
],
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@storybook/addon-essentials": "^7.0.0",
|
|
34
|
+
"@storybook/addon-interactions": "^7.0.0",
|
|
35
|
+
"@storybook/vue3": "^7.0.0",
|
|
36
|
+
"@storybook/vue3-vite": "^7.0.0",
|
|
37
|
+
"@tailwindcss/vite": "^4.0.0",
|
|
38
|
+
"fantasticon": "^4.1.0",
|
|
39
|
+
"storybook": "^7.0.0",
|
|
40
|
+
"tailwindcss": "^4.0.0",
|
|
41
|
+
"vue": "^3.3.4"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {},
|
|
44
|
+
"gitHead": "acc1681edbde68986b3055a22a314ad2094bc005"
|
|
45
|
+
}
|