-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "fp-figma-tw-plugin",
"version": "0.1.0",
"description": "Your Figma Plugin",
"main": "dist/plugin.js",
"scripts": {
"build": "vite build && vite build --mode=ui",
"lint": "eslint --ext .ts,.tsx --ignore-pattern node_modules .",
"lint:fix": "eslint --ext .ts,.tsx --ignore-pattern node_modules --fix ."
},
"author": "",
"license": "",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "*",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.54.0",
"typescript": "^5.3.2",
"vite-plugin-singlefile": "^2.1.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@figma/figma-plugins/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^6.0.5"
},
"type": "module"
}