-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
114 lines (114 loc) · 3.33 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
{
"name": "search-regex",
"version": "3.1.1",
"description": "Adds search and replace functionality across posts, pages, comments, and meta-data, with full regular expression support",
"main": "search-regex.php",
"sideEffects": true,
"scripts": {
"build": "wp-scripts build",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run-script lint",
"plugin-zip": "yarn build && rm -rf release && mkdir -p release && wp-scripts plugin-zip && mv search-regex.zip release",
"release": "yarn plugin-zip && release-it",
"release:svn": "yarn plugin-zip && cd release && unzip search-regex.zip && cd .. && rm release/search-regex.zip && dev/svn.sh",
"start": "wp-scripts start",
"test:js": "wp-scripts test-unit-js",
"test:php": "composer run-script test",
"doc": "apidoc -v -i api/ -o ./api-doc/",
"update": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johngodley/search-regex.git"
},
"author": "John Godley",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/johngodley/search-regex/issues"
},
"homepage": "https://github.com/johngodley/search-regex",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-highlight-words": "^0.20.0",
"@types/react-redux": "^7.1.34",
"@wordpress/base-styles": "^5.12.0",
"@wordpress/eslint-plugin": "^21.5.0",
"@wordpress/prettier-config": "^4.12.0",
"@wordpress/scripts": "^30.5.1",
"apidoc": "^1.2.0",
"chai": "^5.1.2",
"download": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mocha": "^10.8.2",
"node-fetch": "3",
"npm-check-updates": "^17.1.11",
"path": "^0.12.7",
"prettier": "npm:[email protected]",
"release-it": "^17.10.0",
"request": "^2.88.2",
"webpack-shell-plugin-next": "^2.3.2"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@redux-devtools/extension": "^3.3.0",
"@wordpress/element": "^6.12.0",
"@wordpress/i18n": "^5.12.0",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"deep-equal": "^2.2.3",
"file-saver": "^2.0.5",
"qs": "^6.13.1",
"rc-progress": "^4.0.0",
"rc-util": "^5.43.0",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-datepicker": "^7.5.0",
"react-delta": "^1.1.2",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-focus-lock": "^2.13.2",
"react-highlight-words": "^0.20.0",
"react-redux": "^9.1.2",
"react-textarea-autosize": "^8.5.5",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"typescript": "^5.7.2",
"url": "^0.11.4",
"use-debounce": "^10.0.4"
},
"apidoc": {
"name": "Search Regex REST API",
"version": "1.0.0",
"description": "WordPress REST API documentation for Search Regex",
"title": "Search Regex REST API",
"url": "https://searchregex.com/wp-json",
"header": {
"title": "Introduction",
"filename": "./api-header.md"
},
"footer": {
"filename": "./api-footer.md"
},
"template": {
"withCompare": false
},
"sampleUrl": null
},
"wordpress": {
"supported": "6.4"
},
"release-it": {
"github": {
"release": true,
"assets": [
"release/search-regex.zip"
]
},
"npm": false
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}