-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "fwidgets-template",
"version": "0.0.2",
"description": "Create a simple Figma plugin UI with zero UI code.",
"keywords": [
"figma",
"plugin",
"ui"
],
"author": "John Dunning",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fwextensions/fwidgets-template.git"
},
"bugs": {
"url": "https://github.com/fwextensions/fwidgets-template/issues"
},
"homepage": "https://github.com/fwextensions/fwidgets-template#readme",
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"dev": "build-figma-plugin --typecheck --watch"
},
"dependencies": {
"@create-figma-plugin/ui": "^3.0.2",
"@create-figma-plugin/utilities": "^3.0.2",
"fwidgets": "^0.0.3",
"preact": "^10.19.2"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.0.2",
"@create-figma-plugin/tsconfig": "^3.0.2",
"@figma/plugin-typings": "1.81.0",
"typescript": "^5.3.2"
},
"figma-plugin": {
"id": "fwidgetsPluginTemplate",
"name": "Fwidgets Plugin Template",
"editorType": [
"figma"
],
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}