-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "prettier-plugin-lint-md",
"version": "1.0.1",
"description": "prettier 格式化插件,让其符合中文编写规范。",
"contributors": [
"yliu <[email protected]>"
],
"keywords": [
"lint",
"markdown",
"lint-md",
"chinese",
"prettier"
],
"author": "yliu",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/bosens-China/prettier-plugin-lint-md/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosens-China/prettier-plugin-lint-md"
},
"license": "MIT",
"type": "module",
"main": "./dist/prettier-plugin-lint-md.js",
"module": "./dist/prettier-plugin-lint-md.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.6.0",
"commit-and-tag-version": "^12.4.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "9.x",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"tsx": "^4.16.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.2",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"scripts": {
"build": "vite build",
"build-watch": "vite build -w",
"test": "vitest",
"changelog": "conventional-changelog -p -i CHANGELOG.md -s",
"release": "commit-and-tag-version"
},
"dependencies": {
"@lint-md/core": "^2.0.0"
},
"peerDependencies": {
"prettier": ">= 3"
}
}