-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.77 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
65
66
67
68
{
"name": "pressship",
"version": "0.2.2",
"description": "Submit and release WordPress.org plugins from the command line.",
"homepage": "https://pressship.org",
"bin": {
"pressship": "dist/cli.js"
},
"files": [
".claude",
"assets",
"composer.json",
"dist",
"wp-cli",
"README.md",
"LICENSE"
],
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"browsers:install": "playwright install chromium",
"dev": "tsx src/cli.ts",
"check-docs": "node -e \"const fs=require('fs');if(!fs.existsSync('website/node_modules')){console.error('\\x1b[31mError: Please run \\x1b[33mnpm install --prefix website\\x1b[31m first.\\x1b[0m');process.exit(1)}\"",
"docs:build": "npm run check-docs && npm run build --prefix website",
"docs:dev": "npm run check-docs && npm run start --prefix website",
"docs:serve": "npm run check-docs && npm run serve --prefix website",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"keywords": [
"wordpress",
"wordpress.org",
"plugin",
"cli",
"submission",
"svn"
],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"execa": "^9.6.1",
"extract-zip": "^2.0.1",
"fast-glob": "^3.3.3",
"harness-app-sdk": "^0.1.7",
"ignore": "^7.0.5",
"marked": "^18.0.5",
"mysql2": "^3.22.5",
"ora": "^9.4.0",
"playwright": "^1.60.0",
"yazl": "^3.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/yazl": "^3.3.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}