forked from kat-tax/figma-to-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"license": "GPL-3.0",
"scripts": {
"dev": "build-figma-plugin --typecheck --watch",
"build": "build-figma-plugin --typecheck --minify",
"gen-schema": "typescript-json-schema tsconfig.json Settings --out ./src/_schema.json"
},
"figma-plugin": {
"id": "821138713091291738",
"name": "Figma -> React Native",
"permissions": [
"currentuser"
],
"editorType": [
"figma",
"dev"
],
"capabilities": [
"codegen",
"inspect",
"panel"
],
"main": "src/main.ts",
"ui": "src/ui.tsx"
},
"dependencies": {
"@create-figma-plugin/ui": "^2.5.0",
"@create-figma-plugin/utilities": "^2.5.0",
"@hocuspocus/provider": "^2.1.0",
"@monaco-editor/react": "^4.5.1",
"@radix-ui/react-tabs": "^1.0.4",
"@types/lodash.camelcase": "^4.3.7",
"client-zip": "^2.4.4",
"code-block-writer": "^12.0.0",
"deep-object-diff": "^1.1.9",
"diff": "^5.1.0",
"esbuild-wasm": "^0.17.18",
"lint": "link:@types/@codemirror/lint",
"lodash.camelcase": "^4.3.0",
"monaco-editor": "^0.39.0",
"preact": "^10.13.2",
"reserved": "^0.1.2",
"yjs": "^13.6.2"
},
"devDependencies": {
"@create-figma-plugin/build": "^2.5.0",
"@create-figma-plugin/tsconfig": "^2.5.0",
"@figma/plugin-typings": "1.68.0",
"@types/diff": "^5.0.3",
"@types/react": "^18.2.13",
"esbuild": "^0.16.10",
"react-zoom-pan-pinch": "^3.0.8",
"typescript": "^4.9.5",
"typescript-json-schema": "^0.57.0"
},
"browser": {
"crypto": false
}
}