-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.57 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
{
"name": "prettier-plugin-markdown-html",
"version": "1.4.0",
"description": "Format raw HTML in Markdown with Prettier",
"license": "MIT",
"author": {
"name": "Dom Porada",
"email": "dom@dom.engineering",
"url": "https://dom.engineering"
},
"repository": {
"type": "git",
"url": "git+https://github.com/porada/prettier-plugin-markdown-html.git"
},
"keywords": [
"formatting",
"gfm",
"github",
"github-flavored-markdown",
"html",
"markdown",
"markdown-html",
"md",
"prettier",
"prettier-plugin"
],
"files": [
"dist/**"
],
"type": "module",
"sideEffects": false,
"exports": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"peerDependencies": {
"prettier": ">=3"
},
"devDependencies": {
"@standard-config/eslint": "^2.0.2",
"@standard-config/oxlint": "^1.6.2",
"@standard-config/prettier": "^1.11.3",
"@standard-config/tsconfig": "^3.1.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"typescript": "^6.0.2",
"vite-plus": "^0.1.14",
"vitest": "^4.1.2"
},
"scripts": {
"build": "vp pack",
"fix": "pnpm format && pnpm lint",
"format": "prettier --ignore-unknown --log-level=warn --write .",
"format:check": "prettier --check --ignore-unknown .",
"lint": "vp lint --fix",
"lint:check": "vp lint --deny-warnings --type-check",
"prepack": "pnpm run '/^(format:check|lint:check|test|typecheck)$/' && pnpm build",
"prepare": "vp config",
"test": "vitest run",
"typecheck": "tsc --noEmit"
}
}