-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1013 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1013 Bytes
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
{
"name": "figsniff",
"version": "0.1.0",
"description": "Reverse-engineer any website's design system — colors, typography, spacing, components, and libraries.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"figsniff": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"keywords": [
"design",
"extractor",
"scraper",
"css",
"colors",
"typography",
"design-system",
"tokens",
"playwright",
"cli"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.29.1",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"css-tree": "^2.3.1",
"ora": "^8.1.1",
"playwright": "^1.49.0"
},
"devDependencies": {
"@types/css-tree": "^2.3.8",
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}