-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.67 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
{
"name": "@ebuildy/docusaurus-plugin-gitlab",
"version": "0.1.0",
"description": "MDX extensions to embed GitLab resources in Docusaurus 3 docs",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./remark": {
"types": "./dist/remark/index.d.ts",
"import": "./dist/remark/index.js",
"default": "./dist/remark/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js",
"default": "./dist/components/index.js"
},
"./theme.css": "./theme.css"
},
"files": [
"dist",
"theme.css"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint . && markdownlint-cli2",
"lint:js": "eslint .",
"lint:md": "markdownlint-cli2",
"lint:fix": "eslint . --fix && markdownlint-cli2 --fix",
"prepare": "husky"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@gitbeaker/core": "^43.8.0",
"@gitbeaker/rest": "^43.8.0",
"estree-util-value-to-estree": "^3.1.0",
"hast-util-from-html": "^2.0.0",
"hast-util-to-html": "^9.0.0",
"joi": "^17.13.0",
"prism-react-renderer": "^2.4.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^16.0.0",
"@types/mdast": "^4.0.0",
"@types/node": "^26.0.1",
"@types/react": "^18.3.0",
"@vitest/eslint-plugin": "^1.6.20",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-regexp": "^2.10.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.12.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remark-mdx": "^3.1.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9"
}
}