-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "markdown-it-kbd",
"description": "Markdown-it syntax add-on for keystrokes. Renders [[x]] as <kbd>x</kbd>",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"keystroke",
"kbd"
],
"homepage": "https://github.com/jGleitz/markdown-it-kbd",
"license": "MIT",
"author": {
"name": "Joshua Gleitze",
"url": "https://joshuagleitze.de"
},
"files": [
"README.md",
"LICENSE",
"build/index.js",
"build/index.d.ts"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jGleitz/markdown-it-kbd.git"
},
"scripts": {
"build:transpile": "babel ./src --out-dir build --extensions '.ts'",
"build:types": "tsc --project src",
"build": "npm-run-all build:*",
"format": "eslint --fix .",
"lint": "npm-run-all lint:*",
"lint:types": "tsc",
"lint:style": "eslint .",
"prepack": "npm-run-all build:*",
"unittest": "jest",
"test": "npm-run-all lint:* unittest",
"release": "semantic-release"
},
"peerDependencies": {
"markdown-it": ">=9.0.1 <15.0.0"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-typescript": "7.28.5",
"@eslint/js": "10.0.1",
"@eslint/json": "1.2.0",
"@stylistic/eslint-plugin": "5.10.0",
"@types/jest": "30.0.0",
"@types/markdown-it": "14.1.2",
"@types/node": "24.12.2",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "10.2.1",
"eslint-plugin-yml": "3.3.1",
"jest": "30.3.0",
"markdown-it": "14.1.1",
"markdown-it-attrs": "4.3.1",
"npm-run-all2": "8.0.4",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"typescript-eslint": "8.59.0"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}