-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.47 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
53
{
"name": "wpmm",
"version": "0.0.4",
"description": "A Node.js script for easy installation of WordPress, themes, and plugins.",
"author": "Erik Golinelli <https://github.com/erikyo>",
"repository": {
"type": "git",
"url": "https://github.com/erikyo/wpmm.git"
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --watch",
"clean": "tsc --build --clean",
"lint": "npx @biomejs/biome check --apply src tests",
"test": "vitest",
"prepare": "husky install",
"locatesting": "npx . --info --template https://gist.githubusercontent.com/erikyo/795746c96f422168121e47c2a876fb31/raw/1ec18a8bc10b6f80221b69944d9dad19c25613c1/wp-package.json"
},
"type": "module",
"bin": {
"wpmm": "lib/index.js"
},
"keywords": ["wordpress", "manager", "package", "wp", "themes", "plugins"],
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"extract-zip": "^2.0.1",
"inquirer": "^9.2.23",
"@inquirer/prompts": "^5.0.5",
"isotolanguage": "^1.3.1",
"locale-code": "^2.0.2",
"mysql2": "^3.10.0",
"mysqldump": "^3.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/axios": "^0.14.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.13.0",
"@types/yargs": "^17.0.32",
"biome": "^0.3.3",
"husky": "^9.0.11",
"vitest": "^1.6.0",
"lint-staged": "^15.2.5",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"lint-staged": {
"src/**/*.{ts}": ["npx @biomejs/biome check src", "tsc --build"]
}
}