-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 846 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 846 Bytes
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
{
"name": "fixma",
"version": "1.0.0",
"description": "All-in-one Figma plugin for analyzing, fixing and organizing your design files",
"main": "code.js",
"repository": {
"type": "git",
"url": "https://github.com/bilal-arikan/fixma"
},
"scripts": {
"build": "node esbuild.config.js",
"watch": "node esbuild.config.js --watch",
"dev": "npm run build && npm run watch",
"analyze": "npx ts-node analyzer/index.ts",
"server": "tsc && node dist/analyzer/server.js"
},
"keywords": [
"figma",
"plugin",
"fixma",
"lint",
"organize",
"components",
"layout",
"automation"
],
"author": "Bilal Arikan",
"license": "MIT",
"devDependencies": {
"@figma/plugin-typings": "^1.123.0",
"@types/node": "^25.2.3",
"esbuild": "^0.27.3",
"typescript": "^4.9.0"
}
}