-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "@newfold/wp-module-facebook",
"version": "1.1.2",
"description": "Connects to customer Facebook profile and fetches data.",
"main": "build/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"set-version-bump": "node ./set-version-bump.js && npm i && rm -rf ./build && npm run build",
"build": "wp-scripts build ./src/index.js --config ./scripts/webpack.config.js",
"lint": "wp-scripts lint-js ./src/index.js",
"start": "wp-scripts start ./src/index.js --config ./scripts/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newfold-labs/wp-module-facebook.git"
},
"files": [
"build/",
"*.d.ts",
"*.css"
],
"author": "PRESS4",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/newfold-labs/wp-module-facebook/issues"
},
"homepage": "https://github.com/newfold-labs/wp-module-facebook#readme",
"dependencies": {
"@newfold/wp-module-runtime": "^1.1.3",
"@wordpress/api-fetch": "^7.15.1",
"classnames": "^2.3.1",
"react": "^18.2.0",
"react-helmet": "^6.1.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@wordpress/scripts": "^27"
}
}