-
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.84 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.84 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": "8.0.4",
"@babel/core": "8.0.1",
"@babel/preset-env": "8.0.2",
"@babel/preset-typescript": "8.0.1",
"@eslint/js": "10.0.1",
"@eslint/json": "2.1.0",
"@stylistic/eslint-plugin": "5.10.0",
"@types/jest": "30.0.0",
"@types/markdown-it": "14.2.0",
"@types/node": "24.13.3",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "10.9.1",
"eslint-plugin-yml": "3.8.1",
"jest": "30.4.2",
"markdown-it": "14.3.1",
"markdown-it-attrs": "5.0.1",
"npm-run-all2": "9.0.3",
"semantic-release": "25.0.9",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0"
},
"packageManager": "pnpm@11.25.0"
}