forked from Manavarya09/design-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "designlang",
"version": "12.3.0",
"description": "Extract the complete design language from any website and ship it — clone to a working Next.js starter, guard tokens with a CI drift bot, or browse everything in a local studio. Outputs W3C DTCG tokens, motion tokens, typed anatomy stubs, Tailwind config, and ready-to-paste v0 / Lovable / Cursor / Claude-Artifacts prompts.",
"type": "module",
"bin": {
"designlang": "./bin/design-extract.js"
},
"main": "src/index.js",
"scripts": {
"postinstall": "npx playwright install chromium --with-deps 2>/dev/null || npx playwright install chromium",
"start": "node bin/design-extract.js",
"test": "node --test tests/*.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.0",
"playwright": "^1.42.0"
},
"engines": {
"node": ">=20"
},
"keywords": [
"design-system",
"design-tokens",
"design-language",
"css",
"tailwind",
"playwright",
"extraction",
"colors",
"typography",
"claude-code",
"plugin",
"wordpress",
"vue",
"svelte",
"json",
"ci-cd",
"motion",
"animation",
"component-anatomy",
"brand-voice",
"token-lint",
"visual-diff"
],
"author": "masyv",
"license": "MIT"
}