generated from kurone-kito/yarn-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.24 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
{
"name": "@kurone-kito/japanese-law-translation-root",
"version": "0.1.4",
"private": true,
"description": "The unofficial library package provides bilingual English translations of legal terms in Japan.",
"keywords": [
"english",
"japanese",
"legal",
"law",
"translation",
"words"
],
"homepage": "https://github.com/kurone-kito/japanese-law-translation#readme",
"bugs": "https://github.com/kurone-kito/japanese-law-translation/issues",
"repository": "github:kurone-kito/japanese-law-translation",
"license": "CC-BY-4.0",
"author": "kurone-kito <[email protected]> (https://kit.black/)",
"type": "module",
"files": [],
"scripts": {
"build": "pnpm run -r build",
"builder": "pnpm --filter @kurone-kito/japanese-law-translation exec jlt-builder",
"clean": "pnpm run --no-bail -p \"/^clean:.+/\"",
"clean:root": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" \"node_modules/.cache/**/*\"",
"clean:sub": "pnpm run -r clean",
"crawler": "pnpm --filter @kurone-kito/japanese-law-translation exec jlt-crawler",
"lint": "pnpm run \"/lint:.+:check/\"",
"lint:cspell:check": "cspell lint --no-progress --show-suggestions -u \"./**/*\"",
"lint:eslint:check": "eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy=content -f codeframe \"./**/*\"",
"lint:eslint:fix": "pnpm run lint:eslint:check --fix",
"lint:fix": "pnpm run lint:cspell:check && pnpm run \"/lint:.+:fix/\"",
"lint:markdown:check": "markdownlint-cli2 \"**/*.md\"",
"lint:markdown:fix": "markdownlint-cli2 --fix \"**/*.md\"",
"lint:oxlint:check": "oxlint",
"lint:oxlint:fix": "oxlint --fix",
"lint:prettier:check": "pnpm run prettier -cu \"./**/*\"",
"lint:prettier:fix": "pnpm run prettier -uw \"./**/*\"",
"prepare": "husky",
"prettier": "prettier --cache --log-level=warn",
"publish": "pnpm run build && pnpm -r publish",
"publish:next": "pnpm run publish --tag next",
"start": "pnpm run build && pnpm run --parallel -r start",
"test": "vitest run"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@cspell/cspell-types": "^8.14.2",
"@kurone-kito/commitlint-config": "^0.16.1",
"@kurone-kito/cspell-config": "^0.16.1",
"@kurone-kito/eslint-config-base": "^0.16.1",
"@kurone-kito/lint-staged-config": "^0.16.1",
"@kurone-kito/prettier-config": "^0.16.1",
"@kurone-kito/typescript-config": "^0.16.1",
"@typescript-eslint/parser": "^8.5.0",
"cspell": "^8.14.2",
"eslint": "^9.10.0",
"eslint-formatter-codeframe": "^7.32.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint-cli2": "^0.14.0",
"oxlint": "^0.9.5",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sort-json": "^4.0.0",
"rimraf": "^5.0.10",
"typescript": "~5.6.2",
"typescript-eslint-language-service": "^5.0.5",
"vitest": "^2.1.0"
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"engines": {
"node": "^18.20 || ^20.10 || >=22"
},
"publishConfig": {
"access": "public"
}
}