-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "tsukimi",
"private": true,
"version": "0.3.2",
"type": "module",
"description": "Useful toolkit for scrapbox.io as browser extension",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write \"**/*.{js,ts,tsx,jsx,json,md,yml,yaml}\"",
"lintfix": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.30",
"@eslint/js": "9.19.0",
"@types/chrome": "0.0.299",
"@types/jquery": "3.5.32",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@typescript-eslint/parser": "8.22.0",
"@vitejs/plugin-react-swc": "3.7.2",
"eslint": "9.19.0",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.18",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vite": "6.0.11",
"vite-tsconfig-paths": "5.1.4"
},
"lint-staged": {
"*.{ts,tsx,ts}": "eslint --cache --fix",
"*.{js,ts,tsx,jsx,json,md,yml,yaml}": "prettier --write"
}
}