-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "wp-console",
"version": "2.5.0",
"description": "An in-browser PHP console for WordPress powered by PsySH",
"author": "Edi Amin <to.ediamin@gmail.com>",
"license": "GPL-3.0",
"keywords": [
"wordpress",
"console",
"browser",
"psysh",
"shell",
"dump"
],
"homepage": "https://github.com/ediamin/wp-console",
"repository": {
"type": "git",
"url": "git+https://github.com/ediamin/wp-console.git"
},
"bugs": {
"url": "https://github.com/ediamin/wp-console/issues"
},
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.4"
},
"devDependencies": {
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@wordpress/api-fetch": "7.10.0",
"@wordpress/components": "28.10.0",
"@wordpress/compose": "7.10.0",
"@wordpress/data": "10.10.0",
"@wordpress/e2e-test-utils": "11.10.0",
"@wordpress/element": "6.10.0",
"@wordpress/env": "10.10.0",
"@wordpress/hooks": "4.10.0",
"@wordpress/i18n": "5.10.0",
"@wordpress/scripts": "27.9.0",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-testing-library": "6.4.0",
"husky": "9.1.6",
"jquery": "3.7.1",
"jsonminify": "0.4.2",
"lint-staged": "15.2.10",
"minimist": "1.2.8",
"nanoid": "5.0.7",
"semver": "7.6.3",
"shelljs": "0.8.5"
},
"scripts": {
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"dev": "wp-scripts start",
"build": "wp-scripts build",
"lint:js": "wp-scripts lint-js src/ tests/js/",
"lint:css": "wp-scripts lint-style src/",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"make-pot": "wp i18n make-pot . languages/wp-console.pot --include=includes,src --exclude=wordpress-core",
"zip": "node build",
"release": "npm run make-pot && npm run clean && npm run build && node build",
"clean": "rimraf assets/css && rimraf assets/js",
"test:e2e": "wp-scripts test-e2e",
"test:e2e:debug": "wp-scripts --inspect-brk test-e2e --puppeteer-devtools",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"wp-scripts lint-js"
],
"*.scss": [
"wp-scripts lint-style"
],
"package.json": [
"wp-scripts lint-pkg-json"
]
}
}