-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
{
"name": "@jamesives/figma-plugin-favicon-generator",
"description": "Figma plugin for generating favicons based on current node selection.",
"author": "James Ives <[email protected]> (https://jamesiv.es)",
"version": "1.0.2",
"main": "src/code.js",
"scripts": {
"dev": "run-p start:ui start:code",
"start:ui": "vite build --watch --config vite-ui.config.js",
"start:code": "vite build --watch --config vite-code.config.js",
"build": "tsc && vite build --config vite-ui.config.js && vite build --config vite-code.config.js",
"lint": "eslint --ext .ts,.tsx --ignore-pattern node_modules . && prettier --check .",
"lint:fix": "eslint --ext .ts,.tsx --ignore-pattern node_modules --fix . && prettier --write .",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@figma/plugin-typings": "1.96.0",
"@types/file-saver": "2.0.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"figma-plugin-ds": "1.0.1",
"file-saver": "2.0.5",
"jszip": "3.10.1",
"postcss": "8.4.38",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-figma-plugin-ds": "2.3.0",
"tailwindcss": "3.4.4",
"typescript": "5.4.5"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@testing-library/react": "16.0.0",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "4.3.1",
"eslint": "^8.57.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.2",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"vite": "5.4.6",
"vite-plugin-singlefile": "2.0.1"
},
"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": "^_"
}
]
}
}
}