-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
131 lines (131 loc) · 3.73 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
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
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "docusaurus-plugin-search-local",
"version": "2.1.2",
"description": "An offline/local search plugin for Docusaurus v2.",
"homepage": "https://github.com/gabrielcsapo/docusaurus-plugin-search-local",
"repository": "https://github.com/gabrielcsapo/docusaurus-plugin-search-local",
"license": "MIT",
"main": "lib/server/index.js",
"types": "src/docusaurus-plugin-search-local.d.ts",
"workspaces": [
"./website"
],
"files": [
"lib",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "rimraf lib && npm run build:client && npm run build:server && npm run build:css",
"build:client": "tsc --project tsconfig.client.json",
"build:css": "copyfiles -u 3 \"src/client/theme/**/*.css\" lib/client/theme",
"build:server": "tsc --project tsconfig.server.json",
"check": "npm run check:client && npm run check:server",
"check:client": "tsc --noEmit --project ./tsconfig.client.json",
"check:server": "tsc --noEmit --project ./tsconfig.server.json",
"lint": "eslint ./src --config .eslintrc && prettier --check .",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"cheerio": "^1.0.0",
"clsx": "^1.1.1",
"debug": "^4.3.4",
"fs-extra": "^10.1.0",
"klaw-sync": "^6.0.0",
"lunr": "^2.3.9",
"mark.js": "^8.11.1",
"validate-peer-dependencies": "^2.2.0"
},
"devDependencies": {
"@docusaurus/core": "^3.6.3",
"@docusaurus/module-type-aliases": "^3.6.3",
"@docusaurus/tsconfig": "^3.6.3",
"@docusaurus/types": "^3.6.3",
"@docusaurus/utils": "^3.6.3",
"@docusaurus/utils-validation": "^3.6.3",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@release-it-plugins/workspaces": "^3.2.0",
"@swc/core": "^1.2.194",
"@testing-library/react": "^14.2.1",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.13",
"@types/klaw-sync": "^6.0.0",
"@types/lunr": "^2.3.3",
"@types/mark.js": "^8.11.7",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.3.0",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"copyfiles": "^2.4.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fixturify": "^2.1.1",
"foreman": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^20.0.0",
"msw": "^0.36.8",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^17.10.0",
"rimraf": "^3.0.2",
"tmp": "^0.2.1",
"tslib": "^2.4.0",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"peerDependencies": {
"@docusaurus/core": ">=3.0.0",
"@docusaurus/utils": ">=3.0.0",
"@docusaurus/utils-validation": ">=3.0.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"engines": {
"node": ">=18.18.2"
},
"volta": {
"node": "18.18.2",
"yarn": "4.5.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"targets": {
"server": {
"context": "node",
"distDir": "lib/server",
"isLibrary": true,
"optimize": false,
"outputFormat": "commonjs",
"engines": {
"node": ">=16"
}
}
}
}