-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.3 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.3 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
{
"name": "@netfoundry/docusaurus-theme",
"version": "0.8.0",
"description": "NetFoundry Docusaurus theme with shared layout, footer, and styling",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"css",
"theme"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"build": "yarn clean && tsc && yarn build:css",
"watch": "tsc --watch",
"build:css": "node scripts/build-css.mjs",
"test": "jest",
"prepublishOnly": "yarn build && yarn test"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./ui": {
"types": "./dist/src/ui.d.ts",
"default": "./dist/src/ui.js"
},
"./plugins": {
"types": "./dist/src/plugins.d.ts",
"default": "./dist/src/plugins.js"
},
"./node": {
"types": "./dist/src/node.d.ts",
"default": "./dist/src/node.js"
},
"./css/*": "./css/*",
"./theme/NavbarItem/types/ProductPicker": {
"types": "./theme/NavbarItem/types/ProductPicker/index.tsx",
"default": "./theme/NavbarItem/types/ProductPicker/index.tsx"
}
},
"peerDependencies": {
"@docusaurus/core": "^3",
"@docusaurus/theme-classic": "^3",
"@docusaurus/theme-common": "^3",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"dependencies": {
"@docsearch/react": "^3",
"algoliasearch": "^5",
"clsx": "^2.0.0",
"instantsearch.js": "^4",
"react-device-detect": "^2.2.3",
"react-github-btn": "^1.4.0",
"react-instantsearch": "^7"
},
"devDependencies": {
"@docusaurus/core": "^3",
"@docusaurus/theme-classic": "^3",
"@docusaurus/theme-common": "^3",
"@docusaurus/types": "^3",
"@types/js-yaml": "^4.0.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"jest": "^30.0.4",
"react": "^18",
"react-dom": "^18",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/netfoundry/docusaurus-shared.git",
"directory": "packages/docusaurus-theme"
},
"keywords": [
"docusaurus",
"docusaurus-theme",
"netfoundry",
"openziti"
],
"license": "Apache-2.0"
}