-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.7 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
{
"name": "magic-login",
"version": "2.3.5",
"description": "WordPress plugin for passwordless login",
"author": {
"name": "handyplugins",
"email": "support@handyplugins.co",
"url": "https://handyplugins.co",
"role": "developer"
},
"license": "GPL-2.0-or-later",
"scripts": {
"start": "composer install && npm install --include=dev && npm run build",
"watch": "10up-toolkit watch",
"build": "10up-toolkit build",
"format-js": "10up-toolkit format-js",
"lint-js": "10up-toolkit lint-js",
"lint-style": "10up-toolkit lint-style",
"test": "10up-toolkit test-unit-jest",
"make-pot": "wp i18n make-pot . languages/magic-login.pot --domain='magic-login'",
"make-json": "wp i18n make-json languages --no-purge",
"build-release": "npm install --include=dev && composer install --no-dev -o && npm run build && npm run make-pot",
"lint-release": "npm install && composer install && npm run lint"
},
"devDependencies": {
"@wordpress/element": "^6.9.0",
"@wordpress/server-side-render": "^5.9",
"@wpmudev/shared-ui": "2.12.24",
"10up-toolkit": "^6.3",
"@wordpress/scripts": "^30.1"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"10up-toolkit": {
"entry": {
"admin": "./assets/js/admin/admin.js",
"frontend": "./assets/js/frontend/frontend.js",
"block-editor": "./assets/js/admin/block-editor.js",
"admin-style": "./assets/css/admin/admin-style.css",
"login-block-style": "./assets/css/blocks/login-block.css",
"shortcode-style": "./assets/css/shortcode/shortcode-style.css"
},
"wpDependencyExternals": false,
"useBlockAssets": false
}
}