-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.46 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.46 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
{
"name": "@thinkbuff/figma",
"version": "0.0.8",
"description": "Simplify plugin and widget creation for Figma and FigJam",
"private": true,
"type": "module",
"scripts": {
"clean": "pnpm run -r clean && rm -rf node_modules",
"lint": "pnpm run -r lint",
"lint:fix": "pnpm run -r lint --fix",
"typecheck": "pnpm run -r typecheck",
"build": "pnpm --parallel run -r build",
"release": "changelogen --release --no-commit --no-tag && tsx scripts/update-version.ts",
"storybook": "pnpm -F @thinkbuff/figma-react storybook",
"postinstall": "pnpm run -r stub",
"prepare": "simple-git-hooks"
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=20"
},
"author": "Eleven <eteplus@outlook.com>",
"license": "MIT",
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.49.0",
"@thinkbuff/eslint-config": "^0.2.7",
"@types/node": "^22.15.18",
"@unocss/eslint-plugin": "^66.1.2",
"changelogen": "^0.6.1",
"eslint": "^9.27.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^0.12.0",
"glob": "^11.0.2",
"lint-staged": "^16.0.0",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"prettier": {
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"printWidth": 120,
"trailingComma": "all"
}
}