forked from oscarssanchez/ayudante-b
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "ayudanteai-plugin",
"version": "1.0.0",
"scripts": {
"start": "npm run watch",
"watch": "10up-toolkit watch --port=5010 --hot",
"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",
"clean-dist": "rm -rf ./dist"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@wordpress/blob": "^3.21.0",
"@wordpress/block-editor": "8.3.1",
"@wordpress/blocks": "^11.1.5",
"@wordpress/components": "^19.1.6",
"@wordpress/create-block": "^4.5.0",
"@wordpress/element": "4.2.1",
"@wordpress/api-fetch": "^6.19.0",
"@wordpress/i18n": "^4.19.0",
"10up-toolkit": "^4.3.0"
},
"dependencies": {
"@wordpress/data": "^7.5.0",
"prop-types": "^15.7.2"
},
"10up-toolkit": {
"entry": {
"image-creator": "./assets/js/blocks/image-creator/index.js",
"image-creator-styles": "./assets/css/blocks/image-creator/index.css"
}
}
}