-
-
Notifications
You must be signed in to change notification settings - Fork 9.9k
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "@docusaurus/theme-live-codeblock",
"version": "3.9.2",
"description": "Docusaurus live code block component.",
"main": "lib/index.js",
"types": "src/theme-live-codeblock.d.ts",
"sideEffects": [
"lib/theme/Playground/*"
],
"exports": {
"./lib/*": "./lib/*",
"./src/*": "./src/*",
"./client": {
"type": "./lib/client/index.d.ts",
"default": "./lib/client/index.js"
},
".": {
"types": "./src/theme-live-codeblock.d.ts",
"default": "./lib/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build && node ../../admin/scripts/copyUntypedFiles.js && prettier --config ../../.prettierrc --write \"lib/theme/**/*.js\"",
"watch": "run-p -c copy:watch build:watch",
"build:watch": "tsc --build --watch",
"copy:watch": "node ../../admin/scripts/copyUntypedFiles.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/docusaurus.git",
"directory": "packages/docusaurus-theme-live-codeblock"
},
"license": "MIT",
"dependencies": {
"@docusaurus/core": "3.9.2",
"@docusaurus/theme-common": "3.9.2",
"@docusaurus/theme-translations": "3.9.2",
"@docusaurus/utils-validation": "3.9.2",
"@philpl/buble": "^0.19.7",
"clsx": "^2.0.0",
"fs-extra": "^11.2.0",
"react-live": "^4.1.6",
"tslib": "^2.6.0"
},
"devDependencies": {
"@docusaurus/types": "3.9.2",
"@types/buble": "^0.20.1"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"engines": {
"node": ">=24.14"
}
}