-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 KB
/
package.json
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
{
"name": "figma-export",
"dependencies": {
"@create-figma-plugin/ui": "^1.9.2",
"@create-figma-plugin/utilities": "^1.9.2",
"preact": "^10",
"prismjs": "^1.29.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-simple-code-editor": "^0.13.0",
"use-copy": "^0.0.2"
},
"devDependencies": {
"@20i/eslint-config": "^2.1.0",
"@create-figma-plugin/build": "^1.9.2",
"@create-figma-plugin/tsconfig": "^1.9.2",
"@figma/plugin-typings": "1.45.0",
"@types/prettier": "^2.7.0",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint": "^8.22.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"lint": "yarn eslint --max-warnings=0 --cache --fix \"**/*.{js,ts,jsx,tsx}\""
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "figma-export",
"name": "Export to MUI",
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}