-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.99 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
{
"name": "@alexaegis/autotool-plugin-husky",
"description": "Husky, lint-staged and commitlint stuff",
"version": "0.12.0",
"license": "MIT",
"private": false,
"archetype": {
"platform": "node",
"framework": "autotool",
"language": "ts",
"kind": "lib"
},
"keywords": [
"autotool-plugin",
"husky",
"managed-by-autotool"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"lint:depcheck_": "depcheck",
"lint:es": "turbo run lint:es_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
"lint:format": "turbo run lint:format_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
"lint:md": "turbo run lint:md_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"lint:tsc_": "tsc --noEmit",
"publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"publint_": "publint dist",
"test": "turbo run test_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"test_": "vitest --passWithNoTests --coverage --run",
"test:watch": "vitest --passWithNoTests --coverage",
"all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"build": "turbo run build-lib_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"build-lib_": "vite build",
"format": "turbo run format_ --concurrency 16 --filter @alexaegis/autotool-plugin-husky",
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write ."
},
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./commit-msg": "./static/.husky/commit-msg",
"./commitlint.config": "./static/commitlint.config.cjs",
"./lint-staged.config": "./static/lint-staged.config.js",
"./package.json": "./package.json",
"./pre-commit": "./static/.husky/pre-commit",
"./readme": "./readme.md"
},
"dependencies": {
"@alexaegis/lint-staged-config": "workspace:^",
"@alexaegis/logging": "^0.11.0",
"@commitlint/config-conventional": "^19.1.0",
"autotool-plugin": "^0.6.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10"
},
"devDependencies": {
"@alexaegis/eslint-config-vitest": "workspace:^",
"@alexaegis/ts": "workspace:^",
"@alexaegis/vite": "workspace:^",
"@alexaegis/vitest": "workspace:^",
"@types/node": "^22.10.1",
"publint": "^0.2.12",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vitest": "^2.1.6"
}
}