-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.71 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
{
"name": "fe-csv-import-export",
"version": "1.0.1",
"description": "FE CSV Import & Export - Simple CSV Management Without the Complexity.",
"license": "GPL-2.0+",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "npm run watch:all",
"watch:all": "npm run watch:bundle & npm run watch:css",
"watch:bundle": "esbuild assets/js/fe-csv-import-export-main.js --bundle --minify --outfile=assets/js/fe-csv-import-export-admin.min.js --watch=forever",
"watch:css": "esbuild assets/css/fe-csv-import-export-style.css --minify --outfile=assets/css/fe-csv-import-export-style.min.css --watch=forever",
"build": "npm run build:bundle && npm run build:css",
"build:bundle": "esbuild assets/js/fe-csv-import-export-main.js --bundle --minify --outfile=assets/js/fe-csv-import-export-admin.min.js",
"build:css": "esbuild assets/css/fe-csv-import-export-style.css --minify --outfile=assets/css/fe-csv-import-export-style.min.css",
"lint:js": "eslint . --ext .js",
"lint:js:fix": "eslint . --ext .js --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@wordpress/babel-plugin-makepot": "^6.42.0",
"@wordpress/eslint-plugin": "^24.4.0",
"@wordpress/scripts": "^31.7.0",
"esbuild": "^0.27.2",
"eslint": "^8.0.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1"
},
"overrides": {
"axios": "^1.16.1",
"basic-ftp": "^5.3.1",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"serialize-javascript": "^7.0.5",
"uuid": "^11.1.1",
"ws": "^8.21.0",
"webpack-dev-server": "^5.2.4",
"postcss": "^8.5.14",
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"fast-uri": "^3.1.2",
"ip-address": "^10.2.0"
}
}