forked from Figma-Linux/figma-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.74 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "figma-linux",
"version": "0.11.4",
"type": "module",
"description": "Figma is the first interface design tool based in the browser, making it easier for teams to create software. Join as in Telegram: https://t.me/figma_linux",
"main": "dist/main/main.mjs",
"repository": "git@github.com:ChugunovRoman/figma-linux.git",
"homepage": "https://github.com/ChugunovRoman/figma-linux",
"author": "ChugunovRoman <Zebs-BMK@yandex.ru>",
"license": "MIT",
"scripts": {
"start": "run-s build run",
"dev": "vite",
"run": "electron dist/main/main.mjs",
"run:watch": "nodemon --config ./config/nodemon.json",
"build": "npm run cln && vite build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"builder": "electron-builder --config=config/builder.json -l",
"pack": "rm -rf build/installers && npm run build && chmod a+x ./resources/AppRun && npm run builder",
"package": "rm -rf build/installers && npm run build && electron-builder --config=config/builder.json -l",
"local:install": "sudo rm -rf /opt/figma-linux && sudo mkdir -p /opt/figma-linux && sudo cp -rf ./build/installers/linux-unpacked/* /opt/figma-linux/",
"lp": "run-p lint prettier",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prettier": "prettier src/ --write",
"precommit": "lint-staged",
"cln": "rm -rf ./dist"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"adm-zip": "^0.5.16",
"chokidar": "^5.0.0",
"css-vars": "^2.4.0",
"electron-build-env": "^0.2",
"solid-js": "^1.9.0",
"@thisbeyond/solid-dnd": "^0.7.5"
},
"devDependencies": {
"@electron/rebuild": "^4.0.2",
"@eslint/js": "^9.39.2",
"@types/adm-zip": "^0.5.7",
"@types/lodash": "^4.17.23",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"dotenv": "^17.2.3",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"electron-rebuild": "^3.2.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.10.0",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^4.0.17"
},
"keywords": [
"Figma",
"linux",
"Electron",
"desktop",
"app"
]
}