-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
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
{
"name": "figma-plugin-react",
"version": "2.0.3",
"description": "Figma plugin starter with React, Vite, and SCSS.",
"type": "module",
"main": "dist/canvas.js",
"scripts": {
"build": "pnpm build:canvas && pnpm build:plugin",
"build:canvas": "vite build -c ./vite.config.canvas.ts",
"build:plugin": "vite build -c ./vite.config.plugin.ts",
"dev": "concurrently \"pnpm build:canvas --watch\" \"pnpm build:plugin --watch\"",
"lint": "pnpm lint:js",
"lint:js": "eslint --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planetabhi/figma-plugin-react.git"
},
"keywords": [
"figma",
"figma-plugin",
"plugin",
"react",
"starter",
"boilerplate",
"vite",
"scss"
],
"author": "@planetabhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/planetabhi/figma-plugin-react/issues"
},
"homepage": "https://github.com/planetabhi/figma-plugin-react#readme",
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"vite": "6.1.0"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@figma/plugin-typings": "1.107.0",
"@new-ui/reset": "^0.0.5",
"@rollup/plugin-replace": "^6.0.2",
"@types/node": "22.13.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"@vitejs/plugin-react": "4.3.4",
"concurrently": "9.1.2",
"esbuild": "^0.25.0",
"eslint": "9.20.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"sass-embedded": "^1.85.0",
"typescript": "5.7.3",
"vite-plugin-generate-file": "0.2.0",
"vite-plugin-singlefile": "2.1.0"
}
}