-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.79 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
{
"name": "@flowershow/remark-wiki-link",
"version": "3.3.1",
"description": "Parse and render wiki-style links, especially Obsidian style links.",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --sourcemap",
"prepare": "tsup src/index.ts --format esm,cjs --dts --clean --sourcemap",
"test": "jest",
"format": "npx prettier . --write",
"changeset": "changeset",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowershow/remark-wiki-link.git"
},
"keywords": [
"remark",
"remark-plugin",
"markdown",
"obsidian"
],
"author": "Flowershow",
"license": "MIT",
"bugs": {
"url": "https://github.com/flowershow/remark-wiki-link/issues"
},
"homepage": "https://github.com/flowershow/remark-wiki-link#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"github-slugger": "^2.0.0",
"mdast-util-to-markdown": "^2.1.2",
"micromark-util-symbol": "^2.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/jest": "^30.0.0",
"@types/mdast": "^4.0.4",
"@types/node": "^24.0.10",
"jest": "^30.0.4",
"mdast-util-from-markdown": "^2.0.2",
"micromark": "^4.0.2",
"micromark-util-types": "^2.0.2",
"prettier": "3.6.2",
"remark-gfm": "^4.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"unified": "^11.0.5",
"unist-util-select": "^5.1.0"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}