-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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
69
70
71
72
{
"name": "@automattic/wp-studio",
"author": "Automattic Inc.",
"version": "1.7.6-alpha3",
"productName": "Studio CLI",
"description": "WordPress Studio CLI",
"license": "GPL-2.0-or-later",
"bin": {
"studio": "dist/cli/main.js"
},
"files": [
"dist/cli/*.js",
"patches/",
"scripts/"
],
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/studio.git",
"directory": "apps/cli"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.45",
"@mariozechner/pi-tui": "^0.54.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@php-wasm/node": "3.1.12",
"@php-wasm/universal": "3.1.12",
"@php-wasm/util": "3.1.12",
"@vscode/sudo-prompt": "^9.3.2",
"@wordpress/i18n": "^6.14.0",
"@wp-playground/blueprints": "3.1.12",
"@wp-playground/cli": "3.1.12",
"@wp-playground/common": "3.1.12",
"@wp-playground/storage": "3.1.12",
"@wp-playground/wordpress": "3.1.12",
"atomically": "^2.1.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"http-proxy": "^1.18.1",
"node-forge": "^1.3.3",
"ora": "^8.2.0",
"patch-package": "^8.0.1",
"playwright": "^1.52.0",
"semver": "^7.7.4",
"trash": "^10.0.1",
"yargs": "^18.0.0",
"yargs-parser": "^22.0.0",
"zod": "^4.3.6"
},
"scripts": {
"build": "vite build --config ./vite.config.dev.ts",
"build:prod": "vite build --config ./vite.config.prod.ts",
"build:npm": "vite build --config ./vite.config.npm.ts",
"install:bundle": "npm install --omit=dev --no-package-lock --no-progress --install-links --no-workspaces && patch-package && node ../../scripts/remove-fs-ext-other-platform-binaries.mjs",
"package": "npm run install:bundle && npm run build:prod",
"watch": "vite build --config ./vite.config.dev.ts --watch",
"prepublishOnly": "npm run build:npm",
"postinstall": "node scripts/postinstall-npm.mjs"
},
"devDependencies": {
"@studio/common": "file:../../tools/common",
"@types/archiver": "^6.0.4",
"@types/glob": "8.1.0",
"@types/http-proxy": "^1.17.17",
"@types/node-forge": "^1.3.14",
"@types/yargs": "^17.0.35",
"vite": "^7.3.1",
"vite-plugin-static-copy": "^3.1.5"
}
}