-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "rtlplz",
"version": "1.0.0",
"keywords": [
"create-figma-plugin",
"figma",
"figma-plugin"
],
"license": "MIT",
"author": "Saeed Alipoor",
"dependencies": {
"@create-figma-plugin/ui": "^1.7.1",
"@create-figma-plugin/utilities": "^1.7.1",
"@persian-tools/persian-tools": "^1.8.0-beta.0",
"clsx": "^1.1.1",
"focus-trap": "^6.6.1",
"jss": "^10.7.1",
"jss-plugin-camel-case": "^10.7.1",
"jss-plugin-global": "^10.7.1",
"jss-plugin-nested": "^10.7.1",
"jss-preset-default": "^10.7.1",
"preact": "^10",
"string-similarity": "^4.0.4",
"styled-jss": "^2.2.3"
},
"devDependencies": {
"@create-figma-plugin/build": "^1.7.1",
"@create-figma-plugin/tsconfig": "^1.7.1",
"@figma/plugin-typings": "^1.37.0",
"typescript": "^4.6.0-dev.20211103"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"id": "rtlplz",
"name": "RTL PLZ",
"editorType": [
"figma",
"figjam"
],
"menu": [
{
"name": "RTLPLZ Editor",
"main": "src/commands/editor/main.ts",
"ui": "src/commands/editor/ui.tsx"
},
{
"name": "RTLPLZ Reverse",
"main": "src/commands/reverse/main.ts"
},
{
"name": "RTLPLZ Rewrap",
"main": "src/commands/rewrap/main.ts"
},
"-",
{
"name": "Reset to original text",
"main": "src/commands/reset/main.ts"
}
],
"relaunchButtons": {
"ui": {
"name": "Open RTLPLZ Editor",
"main": "src/commands/editor/main.ts",
"ui": "src/commands/editor/ui.tsx"
},
"wrap": {
"name": "RTLPLZ Rewrap",
"main": "src/commands/rewrap/main.ts"
},
"reset": {
"name": "Reset to original text",
"main": "src/commands/reset/main.ts"
}
}
}
}