-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
{
"name": "remark-kbd-nested",
"version": "0.6.1",
"description": "remark plugin to add support for `kbd` element syntax with configurable delimiters, escaping, and arbitrary nesting",
"main": "src/index.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:clean": "rimraf lib && npm run build",
"lint": "eslint src/**/*.ts",
"test": "mocha tests/**/*.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shivjm/remark-extensions.git"
},
"keywords": [
"remark",
"markdown",
"kbd",
"keyboard",
"plugin"
],
"author": "Shiv Jha-Mathur",
"license": "ISC",
"bugs": {
"url": "https://github.com/shivjm/remark-extensions/issues"
},
"homepage": "https://github.com/shivjm/remark-extensions#readme",
"engines": {
"node": ">=18"
},
"type": "module",
"publishConfig": {
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mdast": "^3.0.10",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mdast-util-from-markdown": "^1.0.4",
"mdast-util-to-markdown": "^1.2.4",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"rehype-stringify": "^9.0.2",
"remark": "^14.0.1",
"remark-rehype": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.4",
"unified": "^10.1.0"
},
"files": [
"lib/"
],
"dependencies": {
"micromark-extension-kbd-nested": "workspace:^"
}
}