-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.4 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "unist-plugin-log-tree",
"version": "1.0.3",
"description": "A debugging plugin for the unified ecosystem that logs unist syntax trees without transforming.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rimraf dist && tsc --build && type-coverage",
"format": "npm run prettier && npm run lint",
"prettier": "prettier --write .",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:file": "vitest test.plugin.spec.ts",
"test-coverage": "vitest run --coverage",
"prepack": "npm run build",
"prepublishOnly": "npm run format && npm run test-coverage"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipikuka/unist-plugin-log-tree.git"
},
"keywords": [
"unified",
"mdast",
"markdown",
"MDX",
"remark",
"plugin",
"remark plugin",
"remark marker",
"remark markers",
"remark flexible markers"
],
"author": "ipikuka <talatkuyuk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/unist-plugin-log-tree#readme",
"bugs": {
"url": "https://github.com/ipikuka/unist-plugin-log-tree/issues"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.10.13",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"dedent": "^1.7.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"type-coverage": "^2.29.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"unified": "^11.0.5",
"vitest": "^4.0.18"
},
"dependencies": {
"@types/mdast": "^4.0.4",
"unist-builder": "^4.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-find-all-after": "^5.0.0",
"unist-util-find-all-before": "^5.0.0",
"unist-util-find-between-all": "^1.1.6",
"unist-util-visit": "^5.1.0"
},
"peerDependencies": {
"unified": "^11"
},
"sideEffects": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"strict": true
}
}