-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
141 lines (141 loc) · 4.91 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
132
133
134
135
136
137
138
139
140
141
{
"name": "docusaurus-live-brython",
"version": "3.0.0-beta.28",
"description": "Docusaurus live code block component for python.",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./theme/CodeEditor/hooks": {
"types": "./lib/theme/CodeEditor/hooks/index.d.ts",
"default": "./lib/theme/CodeEditor/hooks/index.js"
},
"./theme/CodeEditor/ContextEditor": {
"types": "./lib/theme/CodeEditor/ContextEditor/index.d.ts",
"default": "./lib/theme/CodeEditor/ContextEditor/index.jsx"
},
"./theme/CodeEditor/Editor": {
"types": "./lib/theme/CodeEditor/Editor/index.d.ts",
"default": "./lib/theme/CodeEditor/Editor/index.jsx"
},
"./theme/CodeEditor/Editor/Result": {
"types": "./lib/theme/CodeEditor/Editor/Result/index.d.ts",
"default": "./lib/theme/CodeEditor/Editor/Result/index.jsx"
},
"./theme/CodeEditor/Editor/Header": {
"types": "./lib/theme/CodeEditor/Editor/Header/index.d.ts",
"default": "./lib/theme/CodeEditor/Editor/Header/index.jsx"
},
"./theme/CodeEditor/Editor/Result/Graphics": {
"types": "./lib/theme/CodeEditor/Editor/Result/Graphics/index.d.ts",
"default": "./lib/theme/CodeEditor/Editor/Result/Graphics/index.jsx"
},
"./theme/CodeEditor/CodeHistory": {
"types": "./lib/theme/CodeEditor/CodeHistory/index.d.ts",
"default": "./lib/theme/CodeEditor/CodeHistory/index.jsx"
},
"./theme/CodeEditor/HiddenCode": {
"types": "./lib/theme/CodeEditor/HiddenCode/index.d.ts",
"default": "./lib/theme/CodeEditor/HiddenCode/index.jsx"
},
"./theme/CodeEditor/Icon": {
"types": "./lib/theme/CodeEditor/Icon/index.d.ts",
"default": "./lib/theme/CodeEditor/Icon/index.jsx"
},
"./theme/CodeEditor/Button": {
"types": "./lib/theme/CodeEditor/Button/index.d.ts",
"default": "./lib/theme/CodeEditor/Button/index.jsx"
},
"./theme/CodeEditor/constants": {
"types": "./lib/theme/CodeEditor/constants.d.ts",
"default": "./lib/theme/CodeEditor/constants.js"
},
"./theme/CodeEditor/Icon/icons": {
"types": "./lib/theme/CodeEditor/Icon/icons.d.ts",
"default": "./lib/theme/CodeEditor/Icon/icons.js"
},
"./theme/CodeEditor": {
"types": "./lib/theme/CodeEditor/index.d.ts",
"default": "./lib/theme/CodeEditor/index.jsx"
},
"./theme/CodeEditor/Editor/utils/*": {
"types": "./lib/theme/CodeEditor/Editor/utils/*.d.ts",
"default": "./lib/theme/CodeEditor/Editor/utils/*.js"
},
"./theme/CodeEditor/WithScript/Store": {
"types": "./lib/theme/CodeEditor/WithScript/Store.d.ts",
"default": "./lib/theme/CodeEditor/WithScript/Store.jsx"
},
"./theme/CodeEditor/WithScript/*": {
"types": "./lib/theme/CodeEditor/WithScript/*.d.ts",
"default": "./lib/theme/CodeEditor/WithScript/*.js"
},
"./theme/CodeEditor/*": {
"types": "./lib/theme/CodeEditor/*.d.ts",
"default": "./lib/theme/CodeEditor/*.jsx"
}
},
"scripts": {
"build": "tsc --build && node ./bin/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 ./bin/copyUntypedFiles.js --watch",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lebalz/docusaurus-live-brython.git"
},
"author": "Balthasar Hofer <[email protected]>",
"bugs": "https://github.com/lebalz/docusaurus-live-brython/issues",
"homepage": "https://lebalz.github.io/docusaurus-live-brython/",
"dependencies": {
"@docusaurus/core": "^3.6.1",
"@docusaurus/preset-classic": "^3.6.1",
"@docusaurus/theme-classic": "3.4.0",
"@docusaurus/theme-common": "3.4.0",
"@docusaurus/theme-translations": "3.4.0",
"@docusaurus/utils-validation": "3.4.0",
"ace-builds": "^1.34.2",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"prism-react-renderer": "^2.3.1",
"rc-slider": "^10.6.2",
"react-ace": "^11.0.1",
"react-diff-viewer-continued": "^3.4.0",
"react-draggable": "^4.4.6",
"svg-parser": "^2.0.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.6.1",
"@docusaurus/tsconfig": "^3.6.1",
"@docusaurus/types": "3.4.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.4",
"@types/svg-parser": "^2.0.6",
"@types/uuid": "^9.0.8",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"engines": {
"node": ">=18"
}
}