-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.85 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
{
"name": "@devbookhq/docusaurus-code-video-plugin",
"version": "1.2.1",
"main": "lib/index.js",
"description": "Add a video to a Docusaurus code block and highlight code lines as the video plays.",
"types": "lib/types.d.ts",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://usedevbook.com",
"author": {
"name": "FoundryLabs, Inc.",
"email": "hello@usedevbook.com",
"url": "https://usedevbook.com"
},
"bugs": "https://github.com/devbookhq/docusaurus-code-video-plugin/issues",
"repository": {
"type": "git",
"url": "https://github.com/devbookhq/docusaurus-code-video-plugin"
},
"sideEffects": [
"lib/theme/CodeBlock/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"prepublishOnly": "npm run build",
"build": "tsc --build && node scripts/copyUntypedFiles.js",
"watch": "npm run build && run-p -c copy:watch build:watch",
"build:watch": "tsc --build --watch",
"copy:watch": "node scripts/copyUntypedFiles.js --watch"
},
"devDependencies": {
"@docusaurus/types": "2.0.0-rc.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"chokidar": "^3.5.3",
"fs-extra": "^10.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.7.4",
"vite": "^3.0.2",
"vite-tsconfig-paths": "^3.5.0"
},
"keywords": [
"devbook",
"documentation",
"code",
"snippets",
"docusaurus",
"docusaurus2",
"plugin",
"video",
"tutorial",
"docs",
"javascript",
"typescript",
"markdown",
"youtube"
],
"files": [
"lib/**",
"src/**",
"README.md",
".gitignore",
"LICENSE",
"package.json",
"package-lock.json"
],
"dependencies": {
"parse-numeric-range": "^1.3.0",
"react-draggable": "^4.4.5",
"react-youtube": "^9.0.3"
}
}