-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 1.88 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
{
"name": "@lunaticmuch/docusaurus-terminology",
"version": "1.4.0",
"description": "A terminology / dictionary add-on for Docusaurus",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf ./lib",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepack": "npm run build"
},
"author": {
"name": "Stefano Cislaghi",
"email": "[email protected]",
"url": "https://stefanocislaghi.com/"
},
"files": [
"lib/",
"components",
"package.json",
"LICENSE.md",
"README.md"
],
"license": "BSD-2-CLAUSE",
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.10",
"@types/git-diff": "^2.0.7",
"git-diff": "^2.0.6",
"globby": "^14.0.1",
"parse-md": "^3.0.3"
},
"devDependencies": {
"@docusaurus/types": "^3.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"keywords": [
"docusaurus",
"terminology",
"dictionary",
"documentation",
"plugin",
"markdown",
"data dictionary"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LunaticMuch/docusaurus-terminology.git"
}
}