forked from ethersphere/bee-js-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "bee-js-docs",
"version": "0.26.0",
"private": true,
"description": "Documentation for bee-js library",
"keywords": [
"Bee",
"Swarm",
"Decentralised Storage",
"Documentation"
],
"homepage": "https://github.com/ethersphere/bee-js-docs",
"bugs": {
"url": "https://github.com/ethersphere/bee-js-docs/issues/"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/bee-js-docs.git"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"serve": "docusaurus serve",
"typedoc": "typedoc"
},
"dependencies": {
"@docusaurus/core": "2.0.0-beta.20",
"@docusaurus/preset-classic": "2.0.0-beta.20",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1",
"docusaurus-lunr-search": "^2.1.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"docusaurus-plugin-typedoc": "~0.17.5",
"typedoc": "~0.22.15",
"typedoc-plugin-markdown": "~3.12.1"
},
"devDependencies": {
"typescript": "~4.6.4",
"@commitlint/config-conventional": "^17.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}