-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.55 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
85
86
87
88
89
90
91
{
"name": "@kurone-kito/kit.black-root",
"version": "1.0.0",
"private": true,
"description": "Website of kurone-kito",
"keywords": [
"VTuber",
"website"
],
"homepage": "https://github.com/kurone-kito/kit.black#readme",
"bugs": "https://github.com/kurone-kito/kit.black/issues",
"repository": "github:kurone-kito/kit.black",
"license": "CC-BY-NC-4.0",
"author": "kurone-kito <[email protected]> (https://kit.black/)",
"type": "module",
"files": [],
"workspaces": {
"packages": [
".packages/*"
]
},
"scripts": {
"prebuild": "nodetouch .env",
"build": "pnpm run -r build",
"clean": "pnpm run --no-bail \"/^clean:.+/\"",
"clean:root": "rimraf -g .eslintcache \"*.tgz\" \"*.tsbuildinfo\" \"node_modules/.cache/**/*\"",
"clean:sub": "pnpm run -r clean",
"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",
"lint:stylelint:check": "pnpm run stylelint",
"lint:stylelint:fix": "pnpm run stylelint --fix",
"pnpm:devPreinstall": "pnpm dlx mkdirp packages/fetcher/dist && pnpm dlx shx head -n 1 packages/fetcher/src/bin.mts > packages/fetcher/dist/bin.mjs",
"prepare": "husky",
"prettier": "prettier --cache --log-level=warn \"./**/*\"",
"prestart": "pnpm run prebuild",
"start": "pnpm run --parallel -r start",
"stylelint": "stylelint --aei --cache --cache-location node_modules/.cache/stylelint/ \"./**/*.css\"",
"test": "vitest run"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cspell/cspell-types": "^8.17.1",
"@cspell/dict-npm": "^5.1.21",
"@kurone-kito/commitlint-config": "^0.17.2",
"@kurone-kito/cspell-config": "^0.17.2",
"@kurone-kito/eslint-config-solid": "^0.17.2",
"@kurone-kito/lint-staged-config": "^0.17.2",
"@kurone-kito/markdownlint-config": "^0.17.2",
"@kurone-kito/prettier-config": "^0.17.2",
"@kurone-kito/typescript-config": "^0.17.2",
"@tailwindcss/container-queries": "^0.1.1",
"@types/node": "^22.10.5",
"cspell": "^8.17.1",
"eslint": "^9.17.0",
"eslint-formatter-codeframe": "^7.32.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"markdownlint-cli2": "^0.17.1",
"oxlint": "^0.15.5",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"touch": "^3.1.1",
"typescript": "~5.7.2",
"typescript-eslint-language-service": "^5.0.5",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"engines": {
"node": ">=23"
},
"publishConfig": {
"access": "public"
}
}