-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
41
42
43
44
45
{
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"fmt": "prettier . -c",
"fmt:fix": "prettier . -w",
"postinstall": "patch-package"
},
"dependencies": {
"@create-figma-plugin/ui": "3.2.0",
"@create-figma-plugin/utilities": "3.2.0",
"react": "18.2.0"
},
"devDependencies": {
"@create-figma-plugin/build": "3.2.0",
"@create-figma-plugin/tsconfig": "3.2.0",
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@figma/plugin-typings": "1.99.0",
"@types/node": "22.5.2",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "8.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-react": "^7.35.0",
"jszip": "^3.10.1",
"patch-package": "^8.0.0",
"prettier": "3.2.5",
"typescript": "5.5.4"
},
"figma-plugin": {
"editorType": [
"figma",
"dev"
],
"documentAccess": "dynamic-page",
"containsWidget": false,
"id": "1181873200384736932",
"name": "WebP Exporter",
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}