-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
"name": "frame-427320547-cleaner",
"dependencies": {
"@create-figma-plugin/ui": "^3.2.0",
"@create-figma-plugin/utilities": "^3.2.0"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.2.0",
"@create-figma-plugin/tsconfig": "^3.2.0",
"@figma/plugin-typings": "1.100.2",
"concurrently": ">=8",
"tailwindcss": "3.4.11",
"typescript": ">=4"
},
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "tailwindcss --input ./src/input.css --output ./src/output.css",
"build:js": "build-figma-plugin --typecheck --minify",
"watch": "npm run build:css && concurrently npm:watch:css npm:watch:js",
"watch:css": "tailwindcss --input ./src/input.css --output ./src/output.css --watch",
"watch:js": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "1426932965476847955",
"name": "Frame 427320547 Cleaner",
"main": "src/main.ts",
"ui": "src/ui.tsx",
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": [
"none"
]
}
}
}