hairfilter.net 1.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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +8 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # HairFilter
2
+
3
+ [HairFilter](https://hairfilter.net/) is an AI hairstyle preview tool for trying hairstyles, hair colors, and visual styles online.
4
+
5
+ Users can explore different looks from a photo, making it useful for personal styling decisions, avatar creation, content inspiration, and visual design experiments.
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ module.exports = {
4
+ name: "HairFilter",
5
+ url: "https://hairfilter.net/",
6
+ description:
7
+ "An AI hairstyle preview tool for trying hairstyles, hair colors, and visual styles online."
8
+ };
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "hairfilter.net",
3
+ "version": "1.0.0",
4
+ "description": "An AI hairstyle preview tool for trying hairstyles, hair colors, and visual styles online.",
5
+ "homepage": "https://hairfilter.net/",
6
+ "keywords": [
7
+ "ai-hairstyle",
8
+ "hair-filter",
9
+ "hairstyle-preview",
10
+ "hair-color",
11
+ "image"
12
+ ],
13
+ "license": "MIT",
14
+ "main": "index.js",
15
+ "publishConfig": {
16
+ "access": "public"
17
+ }
18
+ }