-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@benjc/rehype-scroll-to-top",
"version": "0.1.5",
"description": "A Rehype plugin that adds a 'scroll to top' & 'scroll to bottom' links to the page.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"coverage:types": "type-coverage --min=100",
"typecheck": "tsc --noEmit",
"lint": "xo --prettier",
"lint:fix": "xo --fix --prettier",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjamincharity/rehype-scroll-to-top.git"
},
"keywords": [
"rehype",
"rehype-plugin"
],
"author": "Benjamin Charity <[email protected]> (https://www.benjamincharity.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjamincharity/rehype-scroll-to-top/issues"
},
"homepage": "https://github.com/benjamincharity/rehype-scroll-to-top#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/hast": "^3.0.4",
"@types/node": "^20.11.16",
"@vitest/coverage-v8": "^1.2.2",
"hast-util-to-html": "^9.0.0",
"hastscript": "^9.0.0",
"prettier": "^3.2.4",
"rehype-minify-whitespace": "^6.0.0",
"rimraf": "^5.0.5",
"to-vfile": "^8.0.0",
"type-coverage": "^2.27.1",
"typecov": "~0.2.3",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"xo": "~0.56.0"
},
"peerDependencies": {
"rehype": "^13.0.0",
"unified": "^11.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}