-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "furigana-maker",
"description": "Add furigana to Japanese text on any page for learning kanji pronunciation.",
"version": "2.2.0",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=22.8.0"
},
"private": true,
"license": "MIT",
"author": {
"name": "aiktb",
"email": "[email protected]"
},
"homepage": "https://furiganamaker.app",
"repository": {
"type": "git",
"url": "git+https://github.com/aiktb/FuriganaMaker.git"
},
"bugs": {
"url": "https://github.com/aiktb/FuriganaMaker/issues"
},
"scripts": {
"dev": "wxt",
"build": "wxt build",
"zip": "wxt zip",
"postinstall": "wxt prepare",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"test:unit": "vitest -r __TEST__/unit",
"test:e2e": "playwright test"
},
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@floating-ui/react": "^0.26.20",
"@headlessui/react": "^2.1.7",
"@js-temporal/polyfill": "^0.4.4",
"@sglkc/kuromoji": "^1.1.0",
"@webext-core/messaging": "^2.0.0",
"file-saver": "^2.0.5",
"i18next": "^24.0.0",
"next-themes": "^0.4.0",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-i18next": "^15.1.0",
"react-markdown": "^9.0.1",
"react-router": "^7.0.1",
"react-share": "^5.1.0",
"wanakana": "^5.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@egoist/tailwindcss-icons": "^1.8.1",
"@headlessui/tailwindcss": "^0.2.1",
"@iconify-json/fa6-brands": "^1.1.19",
"@iconify-json/tabler": "^1.1.115",
"@playwright/test": "^1.45.3",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/chrome": "^0.0.283",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.5.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/module-react": "^1.1.1",
"autoprefixer": "^10.4.19",
"husky": "^9.1.3",
"kuromojin": "^3.0.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.0.4",
"wxt": "^0.19.9"
}
}