-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "furigana-maker",
"description": "Add furigana to Japanese text on any page for learning kanji pronunciation.",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.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": {
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"typecheck": "pnpm --recursive --sequential run typecheck",
"test:unit": "pnpm --recursive --sequential run test:unit",
"test:e2e": "pnpm --recursive --sequential run test:e2e",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"vite": "catalog:"
}
}
}