-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@tangible/now",
"type": "module",
"version": "2.0.3",
"description": "Standalone command-line tool to run local WordPress site on Playground",
"homepage": "https://github.com/tangibleinc/now",
"repository": {
"url": "git+ssh://git@github.com/tangibleinc/now.git"
},
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"bin": {
"wp-now": "run"
},
"scripts": {
"start": "cd tests && ../run start",
"build": "npm run test && mkdir -p build && npm run clean && npm run build:esm && npm run build:types",
"build:esm": "bun build.ts esm",
"build:types": "tsc --project tsconfig.types.json",
"build:ext": "bun build.ts ext",
"clean": "rm -rf build/esm/* && rm -rf build/types/* && rm -f build/tsconfig.types.tsbuildinfo",
"format": "prettier --no-config --log-level warn --no-semi --single-quote --write --tab-width 2 --use-tabs false src",
"test": "cd tests && bun index.ts",
"test:8.4": "cd tests && PHP_VERSION=8.4 bun index.ts",
"test:all": "npm run test && npm run test:8.4",
"release": "npm publish --access public",
"release:try": "npm publish --dry-run"
},
"exports": {
".": {
"types": "./build/types/index.d.ts",
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js"
},
"./*": {
"types": "./build/types/*.d.ts",
"require": "./build/cjs/*.js",
"import": "./build/esm/*.js"
}
},
"files": [
"build",
"license.txt",
"package.json",
"readme.md"
],
"dependencies": {
"@php-wasm/node": "1.0.22",
"@php-wasm/progress": "1.0.22",
"@php-wasm/universal": "1.0.22",
"@php-wasm/util": "1.0.22",
"@webcontainer/env": "^1.1.1",
"@wp-playground/blueprints": "1.0.22",
"@wp-playground/wordpress": "^1.0.22",
"compressible": "^2.0.18",
"compression": "^1.7.5",
"express": "^4.21.2",
"express-fileupload": "^1.5.1",
"follow-redirects": "^1.15.9",
"fs-extra": "^11.3.0",
"hpagent": "^1.2.0",
"unzipper": "^0.12.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@gjsify/esbuild-plugin-transform-ext": "^0.0.4",
"@types/fs-extra": "^11.0.4",
"esbuild": "^0.24.2",
"globby": "^14.0.2",
"testra": "^2.1.4",
"typescript": "^5.7.3"
}
}