-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "figma-subzero-plugin",
"version": "1.0.0",
"description": "Convert Figma components to Subzero React components",
"scripts": {
"build": "build-figma-plugin --typecheck --minify --output .",
"dev": "build-figma-plugin --typecheck --watch --output .",
"lint": "eslint . --ext .ts,.tsx"
},
"author": "Sibasish",
"license": "MIT",
"dependencies": {
"@create-figma-plugin/ui": "^2.6.1",
"@create-figma-plugin/utilities": "^2.6.1",
"preact": "^10.19.3"
},
"devDependencies": {
"@create-figma-plugin/build": "^2.6.1",
"@create-figma-plugin/tsconfig": "^2.6.1",
"@figma/plugin-typings": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"figma-plugin": {
"editorType": ["figma", "dev"],
"id": "figma-subzero-plugin",
"name": "Figma Subzero Plugin",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": ["none"]
},
"capabilities": ["inspect", "codegen"],
"codegenLanguages": [
{
"label": "TypeScript/React",
"value": "typescript/react"
}
]
}
}