-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.08 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-run-plugin-api",
"version": "1.0.0",
"author": "Ryo Nakae",
"dependencies": {
"@emotion/react": "11.13.3",
"@monaco-editor/react": "4.6.0",
"monaco-editor": "0.31.1",
"monaco-themes": "0.4.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hotkeys-hook": "3.4.7",
"ress": "4.0.0",
"unstated-next": "1.1.0"
},
"devDependencies": {
"@emotion/babel-plugin": "11.12.0",
"@figma/plugin-typings": "1.99.0",
"@svgr/webpack": "6.5.1",
"@types/node": "17.0.45",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"css-loader": "6.11.0",
"csstype": "3.1.3",
"dts-generator": "3.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-react": "7.35.2",
"html-inline-script-webpack-plugin": "2.0.3",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "2.8.8",
"style-loader": "3.3.4",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "9.5.1",
"typescript": "4.9.5",
"typescript-json-schema": "0.55.0",
"webpack": "5.94.0",
"webpack-cli": "4.10.0"
},
"license": "MIT",
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run lint:fix"
]
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack -w",
"generate-editor-options": "typescript-json-schema node_modules/monaco-editor/esm/vs/editor/editor.api.d.ts editor.IStandaloneEditorConstructionOptions --ignoreErrors --excludePrivate --out src/ui/assets/types/editorOptions.schema.json",
"generate-figma-dts": "dts-generator --project node_modules/@figma/plugin-typings --out src/ui/assets/types/figma.d.ts",
"lint:fix": "npm run lint:prettier --write && npm run lint:eslint --fix",
"lint:eslint": "eslint --ext .ts,.tsx .",
"lint:prettier": "prettier --check . --ignore-path .prettierignore",
"prepare": "husky || true"
}
}