-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.08 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
{
"name": "@alexaegis/remark-preset",
"description": "Remark config preset",
"version": "0.12.0",
"license": "MIT",
"private": false,
"archetype": {
"platform": "node",
"framework": "remark",
"language": "ts",
"kind": "lib"
},
"keywords": [
"eslint",
"managed-by-autotool"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --filter @alexaegis/remark-preset",
"lint:depcheck_": "depcheck",
"lint:es": "turbo run lint:es_ --concurrency 16 --filter @alexaegis/remark-preset",
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
"lint:format": "turbo run lint:format_ --concurrency 16 --filter @alexaegis/remark-preset",
"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/remark-preset",
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --filter @alexaegis/remark-preset",
"lint:tsc_": "tsc --noEmit",
"publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --filter @alexaegis/remark-preset",
"publint_": "publint dist",
"test": "turbo run test_ --concurrency 16 --filter @alexaegis/remark-preset",
"test_": "vitest --passWithNoTests --coverage --run",
"test:watch": "vitest --passWithNoTests --coverage",
"all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --filter @alexaegis/remark-preset",
"build": "turbo run build-lib_ --concurrency 16 --filter @alexaegis/remark-preset",
"build-lib_": "vite build",
"format": "turbo run format_ --concurrency 16 --filter @alexaegis/remark-preset",
"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"
},
"./package.json": "./package.json",
"./readme": "./readme.md"
},
"dependencies": {
"remark-gfm": "^4.0.0",
"remark-lint": "^10.0.0",
"remark-lint-list-item-indent": "^4.0.0",
"remark-lint-list-item-spacing": "^5.0.0",
"remark-lint-no-duplicate-headings": "^4.0.0",
"remark-lint-no-duplicate-headings-in-section": "^4.0.0",
"remark-lint-ordered-list-marker-value": "^4.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-preset-prettier": "^2.0.1",
"remark-validate-links": "^13.0.2",
"unified-consistency": "^2.0.0",
"unified-prettier": "^2.0.1"
},
"optionalDependencies": {
"prettier": "^3.4.1"
},
"devDependencies": {
"@alexaegis/eslint-config-vitest": "workspace:^",
"@alexaegis/ts": "workspace:^",
"@alexaegis/vite": "workspace:^",
"@alexaegis/vitest": "workspace:^",
"@types/node": "^22.10.1",
"publint": "^0.2.12",
"unified": "^11.0.5",
"vite": "^6.0.1",
"vitest": "^2.1.6"
}
}