qwicons 0.0.1 → 0.2.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/lib/entry.lib.d.ts +1 -0
- package/lib/entry.lib.qwik.cjs +59811 -0
- package/lib/entry.lib.qwik.mjs +59811 -0
- package/package.json +5 -13
- package/lib/lu.qwik.cjs +0 -49710
- package/lib/lu.qwik.mjs +0 -47764
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qwicons",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Latest lucide icons for Qwik app",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/xiaofan2406/qwicons",
|
|
@@ -13,27 +13,19 @@
|
|
|
13
13
|
"icons",
|
|
14
14
|
"lucide"
|
|
15
15
|
],
|
|
16
|
-
"types": "./lib/
|
|
16
|
+
"types": "./lib/entry.lib.d.ts",
|
|
17
17
|
"qwik": "./lib/entry.lib.qwik.mjs",
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
|
+
"types": "./lib/entry.lib.d.ts",
|
|
20
21
|
"import": "./lib/entry.lib.qwik.mjs",
|
|
21
|
-
"require": "./lib/entry.lib.qwik.cjs"
|
|
22
|
-
"types": "./lib/entry.lib.d.ts"
|
|
23
|
-
},
|
|
24
|
-
"./lucide": {
|
|
25
|
-
"import": "./lib/lu.qwik.mjs",
|
|
26
|
-
"require": "./lib/lu.qwik.cjs",
|
|
27
|
-
"types": "./lib/icons/lu/lu.d.ts"
|
|
22
|
+
"require": "./lib/entry.lib.qwik.cjs"
|
|
28
23
|
}
|
|
29
24
|
},
|
|
30
25
|
"typesVersions": {
|
|
31
26
|
"*": {
|
|
32
27
|
"*": [
|
|
33
28
|
"./lib/entry.lib.d.ts"
|
|
34
|
-
],
|
|
35
|
-
"lucide": [
|
|
36
|
-
"./lib/icons/lu/lu.d.ts"
|
|
37
29
|
]
|
|
38
30
|
}
|
|
39
31
|
},
|
|
@@ -60,7 +52,7 @@
|
|
|
60
52
|
"generate-license": "bun ./generate/generate-license.ts",
|
|
61
53
|
"link.lib": "bun run build.lib && bun link",
|
|
62
54
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
63
|
-
"release": "bun run generate-icons && bun run generate-license && bun run build.lib &&
|
|
55
|
+
"release": "bun run generate-icons && bun run generate-license && bun run build.lib && bunx np --yolo"
|
|
64
56
|
},
|
|
65
57
|
"devDependencies": {
|
|
66
58
|
"@builder.io/qwik": "^1.20.0",
|