-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.4 KB
/
package.json
File metadata and controls
64 lines (64 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
59
60
61
62
63
64
{
"name": "wpsmith",
"version": "0.1.7",
"description": "The CLI for WordPress Wordsmiths - Laravel-like WordPress development with Playground and SQLite",
"keywords": [
"wordpress",
"cli",
"playground",
"sqlite",
"laravel",
"artisan",
"wp-cli",
"development"
],
"author": "Juan Manuel Garrido",
"license": "MIT",
"type": "module",
"bin": {
"wpsmith": "./bin/wordsmith.js",
"ws": "./bin/wordsmith.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"bin",
"dist",
"templates",
"seeders"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"link": "npm run build && npm link"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"detect-port": "^1.6.1",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"inquirer": "^12.3.2",
"ora": "^8.1.1",
"table": "^6.9.0"
},
"devDependencies": {
"@types/detect-port": "^1.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/juanmaguitar/wpsmith"
},
"bugs": {
"url": "https://github.com/juanmaguitar/wpsmith/issues"
},
"homepage": "https://github.com/juanmaguitar/wpsmith#readme"
}