-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 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
{
"name": "create-wp-plugin",
"version": "1.0.0",
"description": "CLI scaffolding tool for production-ready WordPress plugins with Claude Code support",
"type": "module",
"bin": {
"create-wp-plugin": "bin/create-wp-plugin.js"
},
"scripts": {
"start": "node bin/create-wp-plugin.js",
"test": "node --test tests/**/*.test.js",
"lint": "eslint src/ bin/",
"prepublishOnly": "npm test"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^10.1.0",
"ora": "^8.0.1"
},
"devDependencies": {
"eslint": "^9.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"wordpress",
"wordpress-plugin",
"plugin",
"scaffold",
"generator",
"cli",
"wp-cli",
"claude-code",
"create-wp-plugin",
"boilerplate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/siddik-web/create-wp-plugin.git"
},
"homepage": "https://github.com/siddik-web/create-wp-plugin#readme",
"bugs": {
"url": "https://github.com/siddik-web/create-wp-plugin/issues"
},
"author": {
"name": "Md Siddiqur Rahman",
"url": "https://github.com/siddik-web"
},
"license": "MIT"
}