-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 5.12 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 5.12 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
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
{
"name": "docusaurus-plugins-monorepo",
"version": "1.0.0",
"type": "module",
"description": "A comprehensive collection of Docusaurus plugins",
"private": true,
"scripts": {
"start": "pnpm run build:packages && pnpm run start:website",
"start:website": "pnpm --filter website run start",
"dev": "pnpm run build:packages && pnpm run dev:website",
"dev:website": "pnpm --filter website run start",
"build": "pnpm run build:website",
"build:packages": "pnpm --filter \"./packages/*\" --recursive --stream run build",
"build:website": "pnpm run build:packages && pnpm run build:website:only",
"build:website:only": "pnpm --filter website run build",
"serve": "pnpm --filter website run serve",
"serve:website": "pnpm --filter website run serve",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"watch": "pnpm --filter @signalwire/docusaurus-theme-llms-txt --stream run watch",
"lint": "pnpm run lint:js && pnpm run lint:packages",
"lint:fix": "pnpm run lint:js:fix",
"lint:ci": "pnpm run lint:js --quiet",
"lint:js": "eslint --cache --report-unused-disable-directives .",
"lint:js:fix": "pnpm run lint:js --fix",
"lint:packages": "pnpm --filter \"./packages/*\" --recursive --stream run lint",
"type-check": "pnpm --filter \"./packages/*\" --recursive --stream run type-check",
"clean": "pnpm --filter \"./packages/*\" --recursive --stream run clean && rimraf lib .docusaurus",
"format": "prettier --write .",
"format:check": "prettier --check .",
"bootstrap": "pnpm install && pnpm run build:packages",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"canary": "pnpm run build:packages && pnpm run canary:version && pnpm run canary:publish",
"canary:version": "changeset version --snapshot canary",
"canary:publish": "changeset publish --tag canary",
"alpha": "pnpm run build:packages && pnpm run alpha:version && pnpm run alpha:publish",
"alpha:version": "changeset version --snapshot alpha",
"alpha:publish": "changeset publish --tag alpha",
"beta": "pnpm run build:packages && pnpm run beta:version && pnpm run beta:publish",
"beta:version": "changeset version --snapshot beta",
"beta:publish": "changeset publish --tag beta",
"dev:release": "pnpm run build:packages && pnpm run dev:version && pnpm run dev:publish",
"dev:version": "changeset version --snapshot dev",
"dev:publish": "changeset publish --tag dev",
"prerelease:enter": "changeset pre enter",
"prerelease:exit": "changeset pre exit",
"prerelease:version": "changeset version",
"prerelease:publish": "changeset publish",
"changelog": "changeset status",
"release": "pnpm run build:packages && pnpm run changeset:publish",
"prerelease": "pnpm run build:packages && pnpm run test && pnpm run lint",
"version": "changeset version && pnpm install",
"publish:check": "pnpm --filter \"./packages/*\" --recursive --stream run prepublishOnly",
"npm:check": "npm whoami",
"npm:login": "npm login",
"lock:update": "pnpm dedupe"
},
"keywords": [
"docusaurus",
"plugins",
"documentation",
"markdown",
"react"
],
"author": "SignalWire <devon.white@signalwire.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/signalwire/docusaurus-plugins.git"
},
"bugs": {
"url": "https://github.com/signalwire/docusaurus-plugins/issues"
},
"homepage": "https://github.com/signalwire/docusaurus-plugins#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@docusaurus/eslint-plugin": "^3.10.2",
"@docusaurus/module-type-aliases": "^3.10.2",
"@docusaurus/utils": "^3.10.2",
"@docusaurus/utils-validation": "^3.10.2",
"@testing-library/dom": "^10",
"@testing-library/jest-dom": "~6.9.1",
"@testing-library/react": "^16",
"@testing-library/user-event": "^14",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"chokidar": "^3.6.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.0.0-beta-40c6c23-20250301",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-regexp": "^2.10.0",
"fs-extra": "^11.0.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.4.3",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"yaml": "^2.9.0"
},
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0 <11"
}
}