figma-to-html-pixel-perfect 1.0.0 → 1.0.1
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 +3 -3
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -48,21 +48,21 @@ npx figma-to-html-pixel-perfect --project # this project only: ./.claude/skil
|
|
|
48
48
|
**One-liner without npm (pulls straight from GitHub)**
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
npx tiged fieldqqq/figma-to-html-perfect
|
|
51
|
+
npx tiged fieldqqq/figma-to-html-pixel-perfect \
|
|
52
52
|
~/.claude/skills/figma-to-html-pixel-perfect
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
**Personal skill (git — recommended if you want `git pull` updates)**
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
git clone https://github.com/fieldqqq/figma-to-html-perfect
|
|
58
|
+
git clone https://github.com/fieldqqq/figma-to-html-pixel-perfect \
|
|
59
59
|
~/.claude/skills/figma-to-html-pixel-perfect
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
**Project skill**
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
git clone https://github.com/fieldqqq/figma-to-html-perfect
|
|
65
|
+
git clone https://github.com/fieldqqq/figma-to-html-pixel-perfect \
|
|
66
66
|
.claude/skills/figma-to-html-pixel-perfect
|
|
67
67
|
```
|
|
68
68
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "figma-to-html-pixel-perfect",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Claude Code skill: Figma → pixel-perfect HTML/CSS with a self-verifying fidelity pipeline (114 documented failure modes). Running this package installs the skill into ~/.claude/skills.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"figma-to-html-pixel-perfect": "bin/install.js"
|
|
@@ -14,10 +14,21 @@
|
|
|
14
14
|
],
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/fieldqqq/figma-to-html-perfect
|
|
17
|
+
"url": "git+https://github.com/fieldqqq/figma-to-html-pixel-perfect.git"
|
|
18
18
|
},
|
|
19
|
-
"keywords": [
|
|
19
|
+
"keywords": [
|
|
20
|
+
"claude",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"skill",
|
|
23
|
+
"figma",
|
|
24
|
+
"html",
|
|
25
|
+
"css",
|
|
26
|
+
"pixel-perfect",
|
|
27
|
+
"design-to-code"
|
|
28
|
+
],
|
|
20
29
|
"author": "fieldqqq",
|
|
21
30
|
"license": "MIT",
|
|
22
|
-
"engines": {
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=16"
|
|
33
|
+
}
|
|
23
34
|
}
|