-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.27 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.27 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
{
"name": "design-system-sync",
"version": "4.0.0",
"description": "A powerful Figma plugin that automatically exports design tokens (strings, colors & typography) to GitHub repositories with support for Android, iOS, Flutter, and Kotlin Multiplatform projects.",
"main": "code.js",
"scripts": {
"build": "node esbuild.config.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx --ignore-pattern node_modules src/",
"lint:fix": "eslint --ext .ts,.tsx --ignore-pattern node_modules --fix src/",
"watch": "node esbuild.config.mjs --watch",
"clean": "rm -f code.js code.js.map ui.html",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"figma",
"plugin",
"design-system",
"design-tokens",
"localization",
"colors",
"typography",
"fonts",
"android",
"ios",
"flutter",
"kotlin-multiplatform",
"compose",
"swiftui",
"github",
"automation",
"i18n",
"l10n"
],
"author": "Zeyad Abdullah",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ZeyadAbdullah679/design-system-sync.git"
},
"bugs": {
"url": "https://github.com/ZeyadAbdullah679/design-system-sync/issues"
},
"homepage": "https://github.com/ZeyadAbdullah679/design-system-sync#readme",
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "^1.122.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"esbuild": "^0.28.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.9.3"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@figma/figma-plugins/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "off"
}
}
}