-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.33 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@ipikuka/plugins",
"version": "2.0.3",
"description": "A collection of useful remark, rehype, recma plugins for markdown / MDX",
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.build.json && type-coverage",
"format": "npm run prettier && npm run lint",
"prettier": "prettier --write .",
"lint": "eslint .",
"test": "vitest --watch=false",
"test:watch": "vitest",
"test:file": "vitest plugins.nmr.spec.tsx --watch=false",
"prepack": "npm run build",
"prepublishOnly": "npm run test && npm run format && npm run test-coverage",
"test-coverage": "vitest run --coverage"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipikuka/plugins.git"
},
"keywords": [
"unified",
"remark",
"mdast",
"rehype",
"hast",
"recma",
"esast",
"markdown",
"MDX",
"remark plugins",
"rehype plugins",
"recma plugins"
],
"author": "ipikuka <talatkuyuk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/plugins#readme",
"bugs": {
"url": "https://github.com/ipikuka/plugins/issues"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@mdx-js/react": "^3.1.0",
"@types/node": "^24.12.4",
"@types/react": "^18.3.29",
"@types/react-dom": "^18.3.7",
"@vitest/coverage-v8": "^4.1.7",
"@vitest/eslint-plugin": "^1.6.18",
"dedent": "^1.7.2",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.6.0",
"next-mdx-remote": "^5.0.0",
"next-mdx-remote-client": "^1.1.8",
"prettier": "^3.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.1.3",
"type-coverage": "^2.29.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0",
"unified": "^11.0.4",
"vitest": "^4.1.7"
},
"dependencies": {
"@richardtowers/remark-abbr": "^1.1.5",
"hastscript": "^9.0.1",
"recma-mdx-change-props": "^1.2.5",
"recma-mdx-escape-missing-components": "^1.2.5",
"recma-mdx-interpolate": "^1.1.8",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-meta": "^1.0.6",
"rehype-image-toolkit": "^1.0.8",
"rehype-pre-language": "^1.1.9",
"rehype-prism-plus": "^2.0.2",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-custom-header-id": "^1.0.0",
"remark-definition-list": "^2.0.0",
"remark-emoji": "^5.0.2",
"remark-fix-guillemets": "^1.1.3",
"remark-flexible-code-titles": "^1.3.4",
"remark-flexible-containers": "^1.5.5",
"remark-flexible-markers": "^1.3.5",
"remark-flexible-paragraphs": "^1.3.4",
"remark-flexible-toc": "^1.2.6",
"remark-footnotes-extra": "^0.3.0",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.1",
"remark-ins": "^1.2.5",
"remark-mdx-remove-expressions": "^1.0.9",
"remark-smartypants": "^3.0.2",
"remark-supersub": "^1.0.0",
"remark-textr": "^6.1.0",
"vfile": "^6.0.3"
},
"peerDependencies": {
"unified": "^11"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreCatch": true,
"ignoreAsAssertion": true,
"strict": true
},
"sideEffects": false
}