-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·36 lines (36 loc) · 948 Bytes
/
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
{
"dependencies": {
"@create-figma-plugin/utilities": "^2.6.1",
"html-format": "^1.1.2"
},
"devDependencies": {
"@create-figma-plugin/build": "^2.6.1",
"@create-figma-plugin/tsconfig": "^2.6.1",
"@figma/plugin-typings": "1.74.0",
"typescript": ">=4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"id": "1287660587112027215",
"name": "Figma to Bootstrap 5 Plugin",
"api": "1.0.0",
"ui": "src/ui.ts",
"editorType": [
"figma",
"dev"
],
"networkAccess": {
"allowedDomains": ["https://cdn.jsdelivr.net"],
"reasoning": "Bootstrap 5 CDN",
"devAllowedDomains": ["https://cdn.jsdelivr.net"]
},
"capabilities": ["inspect", "codegen"],
"main": "src/main.ts",
"codegenLanguages": [
{ "label": "Bootstrap", "value": "bootstrap" }
]
}
}