-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.69 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.69 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": "embedpress",
"version": "4.2.7",
"description": "EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors.",
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"start": "vite build --watch --mode development",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"type-check": "tsc --noEmit",
"pot": "wp i18n make-pot . languages/embedpress.pot",
"clean": "rimraf assets",
"test": "vitest",
"test:ui": "vitest --ui",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/WPDevelopers/embedpress.git"
},
"keywords": [
"embed",
"youtube",
"gutenberg",
"pdf",
"docs",
"elementor",
"video",
"google-docs",
"maps",
"content",
"iframes",
"vimeo",
"wistia",
"player",
"block-editor",
"wordpress",
"wpml",
"social-media"
],
"author": "EmbedPress, asif2bd, re_enter_rupok, wpdevteam, seakashdiu, alimuzzamanalim",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/WPDevelopers/embedpress/issues"
},
"homepage": "https://github.com/WPDevelopers/embedpress#readme",
"dependencies": {
"@amcharts/amcharts5": "^5.13.3",
"@wordpress/api-fetch": "^6.44.0",
"@wordpress/block-editor": "^12.15.0",
"@wordpress/blocks": "^12.24.0",
"@wordpress/components": "^25.13.0",
"@wordpress/compose": "^6.24.0",
"@wordpress/core-data": "^6.24.0",
"@wordpress/data": "^9.17.0",
"@wordpress/edit-post": "^7.24.0",
"@wordpress/element": "^5.24.0",
"@wordpress/hooks": "^3.47.0",
"@wordpress/html-entities": "^3.47.0",
"@wordpress/i18n": "^4.47.0",
"@wordpress/keycodes": "^3.47.0",
"@wordpress/notices": "^4.15.0",
"@wordpress/plugins": "^6.15.0",
"@wordpress/primitives": "^3.45.0",
"@wordpress/rich-text": "^6.24.0",
"@wordpress/server-side-render": "^4.24.0",
"@wordpress/url": "^3.48.0",
"@wordpress/viewport": "^5.24.0",
"axios": "^1.7.0",
"chart.js": "^4.4.0",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"md5": "^2.3.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.26.0",
"react-select": "^5.9.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/md5": "^2.3.5",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/ui": "^1.6.0",
"@wordpress/dependency-extraction-webpack-plugin": "^5.0.0",
"@wordpress/scripts": "^27.0.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.38",
"prettier": "^3.3.0",
"rimraf": "^5.0.0",
"sass": "^1.77.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.5.0",
"vite": "^5.4.20",
"vitest": "^1.6.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}