-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "@estebanforge/hyperfields",
"version": "1.2.0",
"description": "HyperFields WordPress library",
"main": "assets/js/dist/react-fields.js",
"scripts": {
"build": "webpack --mode production --progress",
"build:dev": "webpack --mode development --progress",
"watch": "webpack --mode development --watch",
"clean": "rm -rf assets/js/dist"
},
"repository": {
"type": "git",
"url": "https://github.com/EstebanForge/HyperFields"
},
"keywords": [
"wordpress",
"react",
"fields",
"options"
],
"author": "EstebanForge",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"babel-loader": "^9.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@wordpress/block-editor": "^11.0.0",
"@wordpress/components": "^25.0.0",
"@wordpress/element": "^5.0.0",
"@wordpress/i18n": "^4.0.0",
"@wordpress/icons": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}