forked from ryonakae/figma-plugin-run-plugin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "figma-plugin-run-plugin-api",
"version": "1.0.0",
"author": "Ryo Nakae",
"type": "module",
"dependencies": {
"@emotion/react": "11.14.0",
"@monaco-editor/react": "4.7.0",
"monaco-editor": "0.55.1",
"monaco-themes": "0.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hotkeys-hook": "4.6.2",
"ress": "4.0.0",
"zustand": "5.0.11"
},
"devDependencies": {
"@emotion/babel-plugin": "11.12.0",
"@figma/plugin-typings": "1.123.0",
"@types/node": "22.15.0",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "5.1.4",
"@eslint/js": "10.0.1",
"csstype": "3.1.3",
"eslint": "10.0.3",
"eslint-plugin-react": "7.37.5",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vite": "7.3.1",
"vite-plugin-singlefile": "2.3.0",
"vite-plugin-svgr": "4.5.0"
},
"license": "MIT",
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run lint:fix"
]
},
"scripts": {
"build": "vite build && vite build --config vite.config.code.ts",
"build:ui": "vite build",
"build:code": "vite build --config vite.config.code.ts",
"dev": "vite build --watch & vite build --config vite.config.code.ts --watch & wait",
"lint:fix": "prettier --write . --ignore-path .prettierignore && eslint --fix .",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check . --ignore-path .prettierignore",
"prepare": "husky || true"
}
}