-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"dependencies": {
"@create-figma-plugin/ui": "^3.1.0",
"@create-figma-plugin/utilities": "^3.1.0",
"preact": "^10.19.6"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.1.0",
"@create-figma-plugin/tsconfig": "^3.1.0",
"@figma/plugin-typings": "1.88.0",
"@tabler/icons": "^2.47.0",
"fuse.js": "^7.0.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch",
"icons": "ncu -u @tabler/icons && pnpm install && node import-icons && pnpm run build && git add . && git commit -am \"update icons to v`pnpm info @tabler/icons version`\" && git push"
},
"figma-plugin": {
"editorType": [
"figma",
"figjam"
],
"id": "1169807996149376642",
"name": "Tabler Icons",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"networkAccess": {
"allowedDomains": [
"none"
],
"reasoning": "This plugin does not require network access."
}
}
}