-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.72 KB
/
package.json
File metadata and controls
72 lines (72 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
{
"name": "fooconvert",
"version": "2.0.0",
"license": "GPL-3.0-or-later",
"title": "FooConvert",
"description": "Turning clicks into conversions, visitors into customers – the ultimate catalyst for online success!",
"repository": "https://github.com/fooplugins/fooconvert",
"bugs": "https://github.com/fooplugins/fooconvert/issues",
"author": "FooPlugins <info@fooplugins.com>",
"imports": {
"#editor": "./src/editor/index.js",
"#frontend": "./src/frontend/index.js",
"#editor-pro": "./pro/src/editor/index.js",
"#frontend-pro": "./pro/src/frontend/index.js"
},
"browserslist": [
"defaults"
],
"scripts": {
"check-updates": "npx npm-check-updates",
"test:js": "vitest run",
"test:js:watch": "vitest",
"test:php": "php tests/run.php",
"build:dev": "cross-env NODE_ENV=development wp-scripts build --output-path=assets && npm run copy",
"build": "wp-scripts build --output-path=assets && npm run copy",
"copy": "node build/copy-assets.mjs",
"i18n": "node build/make-pot.mjs",
"composer:install": "composer install --prefer-dist --optimize-autoloader --no-dev",
"composer:update": "composer update --optimize-autoloader",
"composer:refresh": "composer dump-autoload --optimize",
"package:create-zip": "npm run build && npm run i18n && npm run composer:refresh && node build/create-zip.mjs",
"package:download-free": "node build/download-free.mjs",
"package:deploy": "node build/freemius-deploy.mjs",
"deploy-wp": "bash ./bin/deploy-wp.sh"
},
"devDependencies": {
"@paper-design/shaders-react": "0.0.76",
"@steveush/utils": "^0.0.2",
"@woocommerce/dependency-extraction-webpack-plugin": "^4.0.0",
"@wordpress/blob": "^4.44.0",
"@wordpress/block-editor": "^15.17.0",
"@wordpress/blocks": "^15.17.0",
"@wordpress/components": "^32.6.0",
"@wordpress/compose": "^7.44.0",
"@wordpress/core-data": "^7.44.0",
"@wordpress/data": "^10.44.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.44.0",
"@wordpress/dom": "^4.44.0",
"@wordpress/dom-ready": "^4.44.0",
"@wordpress/edit-post": "^8.44.0",
"@wordpress/editor": "^14.44.0",
"@wordpress/element": "^6.44.0",
"@wordpress/hooks": "^4.44.0",
"@wordpress/i18n": "^6.17.0",
"@wordpress/icons": "^12.2.0",
"@wordpress/notices": "^5.44.0",
"@wordpress/plugins": "^7.44.0",
"@wordpress/primitives": "^4.44.0",
"@wordpress/scripts": "^32.0.0",
"@wordpress/url": "^4.44.0",
"canvas-confetti": "^1.9.4",
"chalk": "^5.6.2",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cross-env": "^10.1.0",
"fast-glob": "^3.3.3",
"globby": "^16.2.0",
"raw-loader": "^4.0.2",
"sharp": "^0.34.5",
"vitest": "^4.1.4"
}
}