-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.82 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": "Format-Code",
"version": "1.6.0",
"description": "A Figma plugin designed to allow you to format and syntax highlighting code",
"main": "code.js",
"scripts": {
"dev": "webpack serve --mode=development",
"build": "webpack --mode=production",
"prettier": "prettier --write ./**/*",
"lint": "eslint --ext .ts,.tsx --ignore-pattern node_modules .",
"lint:fix": "eslint --ext .ts,.tsx --ignore-pattern node_modules --fix ."
},
"author": "Candido Sales Gomes <[email protected]>",
"license": "MIT",
"dependencies": {
"@effortlessmotion/html-webpack-inline-source-plugin": "^1.0.3",
"highlight.js": "^11.7.0",
"prettier": "^2.8.7"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.15.0",
"@figma/plugin-typings": "^1.97.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.5.0",
"inline-chunk-html-plugin": "^1.1.1",
"sass": "^1.77.8",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.5.3",
"url-loader": "^4.1.1",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"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": "^_"
}
]
}
}
}