-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 5.41 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 5.41 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "docmark",
"description": "a comment parser ecosystem with support for markdown",
"version": "0.0.0",
"keywords": [],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/docmark",
"repository": "https://github.com/flex-development/docmark.git",
"bugs": "https://github.com/flex-development/docmark/issues",
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"type": "module",
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"imports": {
"#build/*": "./build/*.mts",
"#fixtures/*": "./__fixtures__/*.mts",
"#tests/*": "./__tests__/*.mts",
"#utils/*": "./utils/*.mts"
},
"remarkConfig": {
"plugins": [
"@flex-development/remark-preset"
]
},
"scripts": {
"build": "yarn build:tsc && yarn bundle && yarn workspaces foreach --all run post:build",
"build:tsc": "yarn clean:build:tsc --dry && yarn clean:build:tsc && yarn clean:build && tsc --build tsconfig.build.json --verbose --noEmit false",
"bundle": "rollup --config=rollup.config.mts && trash \"packages/*/dist/**/*.{d.mts,mjs}\" \"!packages/*/dist/index.{d.mts,mjs}\" && bash ./scripts/delete-empty.sh",
"check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn check:types && yarn test:cov && yarn build && yarn check:types:attw && yarn clean:pack",
"check:format": "dprint check --incremental=false",
"check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:types": "tsc -p tsconfig.typecheck.json",
"check:types:attw": "bash ./scripts/attw.sh",
"check:upgrades": "yarn upgrade-interactive",
"clean:build": "trash \"packages/*/dist\"",
"clean:build:tsc": "tsc --build tsconfig.build.json --clean",
"clean:modules": "trash .yarn/{cache/,*.gz} node_modules \"packages/*/node_modules\"",
"clean:pack": "trash \"*.tgz\" \"packages/*/*.tgz\"",
"clean:test": "trash __tests__/reports .vitest-reports coverage",
"codecov:validate": "cat .codecov.yml | curl --data-binary @- https://codecov.io/validate",
"commitlint": "commitlint -V",
"fix:cg": "yarn fix:format && yarn fix:lint",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "dprint fmt",
"fix:lint": "yarn check:lint --cache --fix",
"minify:build": "esbuild packages/*/dist/**/*.mjs --allow-overwrite --minify --keep-names --outdir=packages --entry-names=\"[dir]/[name]\" --format=esm --out-extension:.js=.mjs --log-level=warning",
"postinstall": "[ -f ./.git ] && [ -f ./node_modules/.bin/husky ] && chmod +x .husky/_/* && husky || exit 0",
"prepack": "yarn build",
"remark": "remark .",
"test": "yarn clean:build; vitest run",
"test:cov": "yarn test --coverage",
"test:cov:reports": "yarn test:cov --merge-reports --mode=reports",
"test:cov:ui": "yarn test:ui --coverage",
"test:cov:upload": "./codecov -t $CODECOV_TOKEN -f ./coverage/lcov.info",
"test:reports": "yarn test --merge-reports --mode=reports",
"test:ui": "cross-env VITEST_UI=1 vitest --ui",
"typecheck": "yarn test --typecheck --mode=typecheck",
"typecheck:ui": "yarn test:ui --typecheck --mode=typecheck"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.4",
"@commitlint/cli": "21.1.0",
"@commitlint/types": "21.1.0",
"@edge-runtime/vm": "5.0.0",
"@flex-development/colors": "2.0.0",
"@flex-development/commitlint-config": "1.0.1",
"@flex-development/docmark-util-symbol": "workspace:*",
"@flex-development/docmark-util-types": "workspace:*",
"@flex-development/eslint-config": "1.1.1",
"@flex-development/export-regex": "2.0.0",
"@flex-development/grease": "3.0.0-alpha.9",
"@flex-development/import-regex": "3.0.0",
"@flex-development/mark": "1.0.0-alpha.2",
"@flex-development/mark-parser": "1.0.0-alpha.12",
"@flex-development/mlly": "1.0.0-beta.7",
"@flex-development/pathe": "4.0.2",
"@flex-development/pkg-types": "4.1.0",
"@flex-development/remark-preset": "1.0.0",
"@flex-development/tutils": "6.0.0-alpha.25",
"@rollup/plugin-node-resolve": "16.0.3",
"@tsconfig/strictest": "2.0.8",
"@types/concat-stream": "2.0.3",
"@types/is-ci": "3.0.4",
"@types/node-notifier": "8.0.5",
"@types/rollup": "0.54.0",
"@vates/toggle-scripts": "1.0.0",
"@vitest/coverage-v8": "4.1.9",
"@vitest/ui": "4.1.9",
"clean-modules": "4.0.0",
"commonmark.json": "0.31.0",
"concat-stream": "2.0.0",
"convert-hrtime": "5.0.0",
"cross-env": "10.1.0",
"cspell": "10.0.1",
"delete-empty": "3.0.0",
"devlop": "1.1.0",
"dprint": "0.54.0",
"editorconfig": "3.0.2",
"esbuild": "0.28.1",
"eslint": "9.39.4",
"growl": "1.10.5",
"happy-dom": "20.10.6",
"husky": "9.1.7",
"is-ci": "4.1.0",
"micromark": "4.0.2",
"node-notifier": "10.0.1",
"pkg-size": "2.4.0",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"rollup": "4.62.2",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-dts": "6.4.1",
"sh-syntax": "0.5.8",
"to-vfile": "8.0.0",
"trash-cli": "7.2.0",
"tsx": "4.22.5",
"typescript": "6.0.3",
"unified": "11.0.5",
"vfile": "6.0.3",
"vitest": "4.1.9"
},
"packageManager": "yarn@4.17.0",
"sideEffects": false,
"private": true,
"workspaces": [
"packages/*"
]
}