-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"version": "0.0.7",
"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",
"postinstall": "pnpm run -r stub",
"prepare": "simple-git-hooks"
},
"packageManager": "pnpm@9.1.4",
"engines": {
"node": ">=18.18.0"
},
"author": "Eleven <eteplus@outlook.com>",
"license": "MIT",
"devDependencies": {
"@thinkbuff/eslint-config": "^0.1.5",
"@types/node": "^20.13.0",
"@unocss/eslint-plugin": "^0.60.4",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"glob": "^10.4.1",
"lint-staged": "^15.2.5",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"prettier": {
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false
}
}