@dannote/figma-use 0.1.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.
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@dannote/figma-use",
3
+ "version": "0.1.0",
4
+ "description": "Control Figma from the command line. Like browser-use, but for Figma.",
5
+ "type": "module",
6
+ "bin": {
7
+ "figma-use": "bin/figma-use.js"
8
+ },
9
+ "scripts": {
10
+ "build": "bun run build:proxy && bun run build:cli && bun run build:plugin",
11
+ "build:proxy": "bun build packages/proxy/src/index.ts --outdir dist/proxy --target bun",
12
+ "build:cli": "bun build packages/cli/src/index.ts --outdir dist/cli --target bun",
13
+ "build:plugin": "cd packages/plugin && bun run build",
14
+ "dev": "bun run packages/proxy/src/index.ts",
15
+ "test": "cd packages/cli && bun test",
16
+ "prepublishOnly": "bun run build"
17
+ },
18
+ "files": [
19
+ "bin",
20
+ "dist",
21
+ "packages/plugin/dist",
22
+ "README.md"
23
+ ],
24
+ "keywords": [
25
+ "figma",
26
+ "cli",
27
+ "automation",
28
+ "design",
29
+ "ai",
30
+ "mcp",
31
+ "browser-use"
32
+ ],
33
+ "author": "Danila Poyarkov <dan@poyarkov.dev>",
34
+ "license": "MIT",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/dannote/figma-use.git"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/dannote/figma-use/issues"
41
+ },
42
+ "homepage": "https://github.com/dannote/figma-use#readme",
43
+ "dependencies": {
44
+ "citty": "^0.1.6",
45
+ "consola": "^3.4.2",
46
+ "elysia": "^1.2.25"
47
+ },
48
+ "devDependencies": {
49
+ "@anthropic-ai/sdk": "^0.52.0",
50
+ "@anthropic-ai/tokenizer": "^0.0.4",
51
+ "@types/bun": "^1.3.6",
52
+ "esbuild": "^0.25.4",
53
+ "typescript": "^5.8.3"
54
+ },
55
+ "engines": {
56
+ "node": ">=18",
57
+ "bun": ">=1.0"
58
+ }
59
+ }