@heartpace/icons 0.1.1 → 0.1.3
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 +67 -4
- package/dist/categories.d.ts +23 -0
- package/dist/categories.json +1466 -0
- package/dist/index.d.mts +645 -385
- package/dist/index.d.ts +645 -385
- package/dist/index.js +550 -420
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +293 -228
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartpace/icons",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "SVG icon library with recursive autogeneration",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -11,7 +11,13 @@
|
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"import": "./dist/index.mjs",
|
|
13
13
|
"require": "./dist/index.js"
|
|
14
|
-
}
|
|
14
|
+
},
|
|
15
|
+
"./categories": {
|
|
16
|
+
"types": "./dist/categories.d.ts",
|
|
17
|
+
"import": "./dist/categories.json",
|
|
18
|
+
"require": "./dist/categories.json"
|
|
19
|
+
},
|
|
20
|
+
"./categories.json": "./dist/categories.json"
|
|
15
21
|
},
|
|
16
22
|
"files": [
|
|
17
23
|
"dist",
|
|
@@ -20,7 +26,7 @@
|
|
|
20
26
|
],
|
|
21
27
|
"scripts": {
|
|
22
28
|
"generate": "node scripts/generate.js",
|
|
23
|
-
"build": "npm run generate && tsup",
|
|
29
|
+
"build": "npm run generate && tsup && node scripts/copy-categories.js",
|
|
24
30
|
"dev": "npm run generate && tsup --watch",
|
|
25
31
|
"prepublishOnly": "npm run build"
|
|
26
32
|
},
|