-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "remark-translit-slug",
"version": "1.1.3",
"description": "A remark plugin that transliterates headers into slug-IDs.",
"keywords": [
"remark",
"markdown",
"plugin",
"slug",
"transliteration",
"slugify",
"next"
],
"bugs": {
"url": "https://github.com/Pilaton/remark-translit-slug/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Pilaton/remark-translit-slug.git"
},
"license": "MIT",
"author": "Pilaton <[email protected]> (https://pilaton.com)",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"check": "tsc --noEmit",
"lint:dryRun": "biome check .",
"test": "vitest"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.1",
"mdast-util-to-string": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node-lts": "^22.0.1",
"@types/mdast": "^4.0.4",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}