-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 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
{
"name": "@baur-software/figma-to",
"version": "0.5.0",
"description": "Transform Figma design tokens to any framework via adapters",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"figma-to": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./adapters/figma": {
"import": "./dist/adapters/figma/index.js",
"types": "./dist/adapters/figma/index.d.ts"
},
"./adapters/tailwind-ionic": {
"import": "./dist/adapters/tailwind-ionic/index.js",
"types": "./dist/adapters/tailwind-ionic/index.d.ts"
},
"./adapters/nextjs": {
"import": "./dist/adapters/output/nextjs/index.js",
"types": "./dist/adapters/output/nextjs/index.d.ts"
},
"./nextjs": {
"import": "./dist/adapters/output/nextjs/index.js",
"types": "./dist/adapters/output/nextjs/index.d.ts"
},
"./nextjs-adapter": {
"import": "./dist/adapters/output/nextjs/nextjs-adapter.js",
"types": "./dist/adapters/output/nextjs/nextjs-adapter.d.ts",
"require": "./dist/adapters/output/nextjs/nextjs-adapter.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"lint": "eslint src",
"typecheck": "tsc --noEmit"
},
"keywords": [
"figma",
"tailwind",
"ionic",
"design-tokens",
"mcp",
"solidjs",
"capacitor",
"nextjs",
"next.js"
],
"author": "Baur Software",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Baur-Software/Figma-To"
},
"bugs": {
"url": "https://github.com/Baur-Software/Figma-To/issues"
},
"homepage": "https://github.com/Baur-Software/Figma-To#readme",
"dependencies": {
"@figma/rest-api-spec": "^0.34.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"peerDependencies": {
"tailwindcss": "^4.0.0"
},
"engines": {
"node": ">=20"
}
}