-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.87 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
{
"packageManager": "[email protected]",
"name": "remark-definition-list",
"version": "2.0.0",
"description": "remark plugin to support definition list",
"author": "Wataru Watanabe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wataru-chocola/remark-definition-list.git"
},
"bugs": {
"url": "https://github.com/wataru-chocola/remark-definition-list/issues"
},
"homepage": "https://github.com/wataru-chocola/remark-definition-list",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"lib/*.js",
"lib/*.d.ts",
"!lib/*.test.js",
"!lib/*.test.d.ts"
],
"scripts": {
"format": "prettier --write \"./**/*.{ts,json}\"",
"lint": "eslint './**/*.ts'",
"lint-fix": "eslint --fix './**/*.{ts}' && prettier --write ./**/*.{ts,json}",
"typecheck": "tsc",
"test": "vitest run .js",
"test:dev": "npm run clean && vitest",
"build": "npm run clean && tsc",
"prepack": "npm run build",
"clean": "rimraf index.js index.test.js lib/*.js"
},
"keywords": [
"remark",
"remark-plugin",
"markdown"
],
"dependencies": {
"hast-util-definition-list": "^2.1.0",
"mdast-util-definition-list": "^2.0.0",
"micromark-extension-definition-list": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "22.10.5",
"eslint": "9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "2.31.0",
"prettier": "3.4.2",
"rehype-parse": "9.0.1",
"rehype-remark": "10.0.0",
"rehype-stringify": "10.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"remark-stringify": "11.0.0",
"rimraf": "6.0.1",
"ts-dedent": "2.2.0",
"typescript": "5.7.2",
"typescript-eslint": "^8.19.0",
"unified": "11.0.5",
"vitest": "2.1.8"
}
}