-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "font-mixer",
"version": "1.0.0",
"description": "Figma plugin for japanese typography",
"main": "build/main.js",
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"test": "jest",
"format": "rome format src --indent-style space --quote-style single --write"
},
"author": "KODANSHAtech LLC.",
"license": "MIT",
"devDependencies": {
"@create-figma-plugin/build": "^3.1.0",
"@create-figma-plugin/tsconfig": "^3.1.0",
"@figma/plugin-typings": "^1.88.0",
"@types/jest": "^28.1.3",
"esbuild-jest": "^0.5.0",
"jest": "^28.1.1",
"rome": "^0.8.0-next.ff4153b",
"typescript": "^5.3.3"
},
"dependencies": {
"@create-figma-plugin/ui": "^3.1.0",
"@create-figma-plugin/utilities": "^3.1.0",
"preact": "^10.10.6"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "1119612117220702803",
"name": "Font Mixer",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": [
"none"
]
},
"relaunchButtons": {
"openPlugin": {
"name": "Open FontMixer",
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}
}
}