-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.91 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
{
"packageManager": "[email protected]",
"name": "mdast-util-definition-list",
"version": "2.0.0",
"description": "mdast extension for definition list",
"author": "Wataru Watanabe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wataru-chocola/mdast-util-definition-list.git"
},
"bugs": {
"url": "https://github.com/wataru-chocola/mdast-util-definition-list/issues"
},
"homepage": "https://github.com/wataru-chocola/mdast-util-definition-list",
"main": "./index.js",
"types": "./index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts",
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/mdast": "^4.0.1",
"@types/unist": "^3.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-hast": "^13.0.2",
"mdast-util-to-markdown": "^2.1.0",
"micromark-extension-definition-list": "^2.0.0",
"unist-builder": "^4.0.0"
},
"devDependencies": {
"@types/hast": "3.0.4",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"hast-util-to-html": "9.0.3",
"npm-check-updates": "17.1.3",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-dedent": "2.2.0",
"typescript": "5.6.2",
"vitest": "2.1.4"
},
"keywords": [
"mdast",
"mdast-util",
"markdown"
],
"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/*.d.ts lib/*.js"
}
}