-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.49 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "figma-use",
"version": "0.13.1",
"description": "Control Figma from the command line. Full read/write access for AI agents.",
"keywords": [
"ai",
"ai-agents",
"automation",
"cli",
"design",
"figma",
"plugin"
],
"homepage": "https://github.com/dannote/figma-use#readme",
"bugs": {
"url": "https://github.com/dannote/figma-use/issues"
},
"license": "MIT",
"author": "Danila Poyarkov <dev@dannote.net>",
"repository": {
"type": "git",
"url": "git+https://github.com/dannote/figma-use.git"
},
"bin": {
"figma-fast": "bin/figma-fast.js",
"figma-use": "bin/figma-use.js"
},
"files": [
"bin",
"CHANGELOG.md",
"README.md",
"SKILL.md",
"dist/cli",
"dist/mcp-tools.json",
"packages/plugin/src",
"packages/cli/src/color.ts",
"packages/cli/src/render"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/cli/index.js",
"./render": "./packages/cli/src/render/index.ts",
"./components": "./packages/cli/src/render/components.tsx"
},
"scripts": {
"build": "bun run build:cli && bun run build:mcp-tools",
"build:mcp-tools": "bun scripts/generate-mcp-tools.ts",
"build:cli": "bun build packages/cli/src/index.ts --outdir dist/cli --target node --minify --external esbuild --external typescript --external @modelcontextprotocol/sdk --external oxfmt --external whaticon --external pngjs --external pixelmatch",
"test": "cd packages/cli && bun test",
"lint": "oxlint packages/",
"format": "oxfmt --write packages/",
"prepublishOnly": "bun run build",
"build:fast": "bun build packages/cli/src/fast.ts --outfile dist/fast.mjs --target node --minify"
},
"dependencies": {
"agentfmt": "^0.1.3",
"citty": "^0.1.6",
"consola": "^3.4.2",
"d3-hierarchy": "^3.1.2",
"diff": "^8.0.3",
"esbuild": "^0.25.4",
"fontoxpath": "^3.34.0",
"postcss": "^8.5.6",
"svgpath": "^2.6.0",
"typescript": "^5.8.3",
"whaticon": "0.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@figma/plugin-typings": "^1.122.0",
"@iconify/core": "^4.1.0",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^3.1.0",
"@types/bun": "^1.3.6",
"@types/d3-hierarchy": "^3.1.7",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.9",
"@types/ws": "^8.18.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"oxfmt": "^0.26.0",
"oxlint": "^1.39.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"react": "19"
}
}