-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 KB
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
{
"name": "@gracefullight/figma-plugin-starter",
"version": "0.1.0",
"description": "figma plugin preset",
"license": "MIT",
"author": "Figma",
"contributors": [
{
"name": "Gracefullight",
"email": "gracefullight.dev@gmail.com"
}
],
"scripts": {
"build": "pnpm build:ui && pnpm build:main --minify",
"build:main": "esbuild src/plugin/code.ts --bundle --outfile=dist/code.js",
"build:ui": "pnpm vite build --emptyOutDir=false",
"build:watch": "concurrently -n widget,iframe \"pnpm build:main --watch\" \"pnpm build:ui --watch\"",
"dev": "concurrently -n tsc,build,vite 'pnpm:tsc:watch' 'pnpm:build:watch' 'vite'",
"format": "prettier --write .",
"postinstall": "husky install",
"test": "pnpm tsc && pnpm build",
"tsc:watch": "pnpm tsc --watch --preserveWatchOutput"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.13",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@figma/plugin-typings": "^1.88.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-singlefile": "^2.0.1",
"vite-svg-loader": "^5.1.0"
},
"packageManager": "^pnpm@8.15.4",
"engines": {
"node": "20"
}
}