-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "wp-setup",
"version": "1.2.2",
"description": "Easily create replicable local WordPress environments with Docker",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Luc-cpl/wp-setup"
},
"homepage": "http://lucascarvalho.site/wp-setup/",
"keywords": [
"cli",
"wordpress",
"setup",
"environment",
"docker",
"wordpress-cli",
"wp-cli",
"development"
],
"scripts": {
"build": "tsc && tsc-alias",
"build:fresh": "rm -rf ./dist && tsc && tsc-alias",
"prepublishOnly": "pnpm lint && pnpm run build:fresh",
"watch": "nodemon",
"lint": "eslint src/"
},
"bin": {
"wp-setup": "dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Lucas Carvalho",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.12",
"commander": "^12.0.0",
"edge.js": "^6.0.2"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/adm-zip": "^0.5.5",
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"nodemon": "^3.1.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
}
}