-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.36 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
84
85
86
87
88
89
{
"name": "remark-lint-frontmatter-schema",
"version": "3.15.4",
"description": "Validate Markdown frontmatter YAML against an associated JSON schema — remark-lint rule plugin",
"keywords": [
"lint",
"yaml",
"remark",
"validation",
"linting",
"json-schema",
"linter",
"unified",
"frontmatter",
"remarkjs",
"rule",
"ajv",
"markdown",
"vscode",
"tooling"
],
"homepage": "https://github.com/JulianCataldo/remark-lint-frontmatter-schema",
"bugs": {
"url": "https://github.com/JulianCataldo/remark-lint-frontmatter-schema/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/JulianCataldo/remark-lint-frontmatter-schema"
},
"license": "ISC",
"author": "Julian Cataldo",
"type": "module",
"main": "./dist/index.js",
"source": "./index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/*",
"index.ts"
],
"scripts": {
"build": "pnpm tsc",
"dev": "pnpm tsc -w",
"release": "semantic-release"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.2.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"find-up": "^6.3.0",
"minimatch": "^9.0.3",
"unified-lint-rule": "^2.1.2",
"yaml": "^2.3.3"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.1",
"@semantic-release/npm": "11.0.0",
"@types/eslint": "8.44.4",
"@types/json-schema": "7.0.13",
"@types/mdast": "3.0.13",
"@types/minimatch": "5.1.2",
"@types/node": "20.8.6",
"@types/unist": "2.0.8",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-tsdoc": "0.2.17",
"prettier": "3.0.3",
"remark": "15.0.1",
"remark-cli": "12.0.0",
"semantic-release": "22.0.5",
"typescript": "5.2.2",
"unified": "10.1.2",
"vfile-message": "3.1.4",
"webdev-configs": "1.5.0"
},
"packageManager": "[email protected]"
}