forked from weDevsOfficial/wedocs-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.72 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
{
"name": "weDocs",
"version": "2.5.0",
"description": "A documentation plugin for WordPress",
"author": "Tareq Hasan",
"license": "GPL",
"private": true,
"main": "src/index.js",
"engines": {
"node": ">=22.12.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"start:hot": "wp-scripts start --hot",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"make-pot:local": "wp i18n make-pot . languages/wedocs.pot",
"zip:create": "node bin/zip.mjs",
"version:replace": "node bin/version-replace.mjs",
"release": "pnpm run version:replace && pnpm run build && pnpm run make-pot:local && pnpm run zip:create"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@wordpress/block-editor": "^17.0.0",
"@wordpress/components": "^40.0.0",
"@wordpress/icons": "^15.5.0",
"@wordpress/scripts": "^34.2.0",
"archiver": "^8.0.0",
"autoprefixer": "^10.4.13",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"postcss": "^8.4.21",
"replace-in-file": "^9.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "^4.3.3",
"tailwindcss-scoped-preflight": "^4.0.6"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.0.14",
"@tailwindcss/forms": "^0.5.11",
"@tiptap/extension-highlight": "^3.22.2",
"@tiptap/extension-placeholder": "^3.22.2",
"@tiptap/extension-text-align": "^3.22.2",
"@tiptap/react": "^3.22.2",
"@tiptap/starter-kit": "^3.22.2",
"@wordpress/api-fetch": "^7.54.0",
"@wordpress/core-data": "^7.54.0",
"@wordpress/data": "^10.54.0",
"@wordpress/element": "^8.6.0",
"@wordpress/html-entities": "^4.54.0",
"@wordpress/i18n": "^6.27.0",
"daisyui": "^5.7.22",
"he": "^1.2.0",
"less-loader": "^13.0.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^7.18.2",
"sweetalert2": "^11.7.1"
},
"overrides": {
"fast-uri": "4.1.2"
},
"pnpm": {
"overrides": {
"fast-uri": "4.1.2"
},
"ignoredBuiltDependencies": [
"@parcel/watcher",
"core-js",
"core-js-pure",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.8.1"
}