-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "tossface-figma-plugin",
"version": "0.3.0",
"description": "An unofficial figma plugin for TossFace",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@9.7.1",
"scripts": {
"prepare": "husky install",
"plugin": "pnpm -F @tossface-figma/plugin",
"ui": "pnpm -F @tossface-figma/ui",
"common": "pnpm -F @tossface-figma/common",
"dev": "pnpm -r --stream dev",
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json}'",
"clean": "rimraf dist",
"update:tossface": "git submodule update --remote"
},
"devDependencies": {
"@commitlint/types": "^18.4.3",
"@vitejs/plugin-react": "^4.3.1",
"commitlint": "^18.4.3",
"commitlint-config-gitmoji": "^2.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-singlefile": "^2.0.2",
"vite-tsconfig-paths": "^5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/*/src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write"
]
}
}