-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "@wpsyntex/polylang-react-library",
"version": "1.0.0",
"description": "A collection of React components, icons, and utilities for Polylang-related projects.",
"keywords": [
"gutenberg",
"react",
"wordpress",
"polylang",
"multilingual",
"components",
"icons"
],
"homepage": "https://github.com/polylang/polylang-react-library#readme",
"bugs": {
"url": "https://github.com/polylang/polylang-react-library/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polylang/polylang-react-library.git"
},
"license": "GPL-3.0+",
"author": "WP Syntex",
"main": "build/index.js",
"sideEffects": false,
"files": [
"build/"
],
"scripts": {
"build": "babel src --out-dir build --copy-files",
"prepare": "npm run build",
"lint": "wp-scripts lint-js",
"lint:fix": "wp-scripts lint-js --fix"
},
"dependencies": {
"@babel/cli": "^7.26.5",
"@wordpress/babel-preset-default": "^8.10"
},
"peerDependencies": {
"@wordpress/api-fetch": ">=7.0.0",
"@wordpress/data": ">=10.0.0",
"@wordpress/editor": ">=14.0.0",
"@wordpress/element": ">=6.0.0",
"@wordpress/primitives": ">=4.0.0",
"lodash": ">=4.17.0",
"react": ">=17.0.0"
},
"devDependencies": {
"@wordpress/scripts": "^31.4.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}