generated from ITZSHOAIB/typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.77 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "rehype-code-group",
"version": "0.2.3",
"description": "A Rehype plugin for grouping code blocks with tabs, perfect for documentation and tutorials. Works with all Code Syntax Highlighters.",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist"],
"scripts": {
"run:example": "pnpm build && node example/index.js",
"build": "pnpm clean && tsc",
"clean": "rimraf dist",
"format": "biome format --write",
"lint": "biome check --fix",
"lint:staged": "lint-staged",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"prepare": "npx simple-git-hooks",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"generate:fixtures": "npx tsx scripts/generateFixtures.ts"
},
"dependencies": {
"hast-util-to-string": "~3.0.1",
"rehype": "~13.0.2",
"unified": "~11.0.5",
"unist-util-visit": "~5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/hast": "^3.0.4",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "2.1.5",
"lint-staged": "^15.2.10",
"rehype-minify-whitespace": "^6.0.2",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"peerDependencies": {
"typescript": ">=5.0.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"rehype",
"rehype-plugin",
"rehype-code-group",
"rehype-code-tabs",
"rehype-code-grouping",
"rehype-code-group-tabs",
"rehype-code-grouping-tabs",
"rehype-tabs",
"rehype-tab",
"rehype-code-block",
"rehype-code-group-block",
"rehype-code-grouping-block",
"rehype-code-grouping-tabs-block",
"rehype-tabs-block",
"rehype-tab-block",
"rehype-code-grouping-tab-block"
],
"author": "Sohab Sk",
"license": "MIT",
"repository": {
"url": "https://github.com/ITZSHOAIB/rehype-code-group"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*": ["pnpm lint", "git add"]
},
"simple-git-hooks": {
"pre-commit": "pnpm typecheck && pnpm test:coverage && pnpm lint:staged"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false
}