-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.45 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "block-runner",
"version": "0.5.1",
"description": "The layer between generated content and WordPress — convert what AI, agents, and design tools emit into clean, valid, native Gutenberg blocks, and validate every result. CLI + library.",
"type": "module",
"license": "GPL-2.0-or-later",
"author": {
"name": "Human Made",
"url": "https://humanmade.com"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"types": "./dist/index.d.ts",
"keywords": [
"wordpress",
"gutenberg",
"block-editor",
"blocks",
"wordpress-blocks",
"gutenberg-blocks",
"html-to-blocks",
"block-converter",
"headless-gutenberg",
"content-pipeline",
"cli",
"agent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/humanmade/block-runner.git"
},
"homepage": "https://github.com/humanmade/block-runner#readme",
"bugs": "https://github.com/humanmade/block-runner/issues",
"bin": {
"block-runner": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"examples",
"scripts/prune-wp-vips.mjs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"dev": "tsx src/cli.ts",
"bench": "tsx scripts/bench.ts",
"bench:record": "tsx scripts/bench.ts --record",
"tune": "tsx scripts/tune.ts",
"tune:t0": "tsx scripts/tune.ts --tier t0",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"pack:check": "npm pack --dry-run --ignore-scripts",
"check:private": "node scripts/check-private-refs.mjs",
"verify": "npm run typecheck && npm test && npm run build && npm run check:private && npm run pack:check",
"prepare": "npm run build",
"postinstall": "node scripts/prune-wp-vips.mjs"
},
"dependencies": {
"@wordpress/block-library": "10.1.0",
"@wordpress/blocks": "15.23.0",
"commander": "15.0.0",
"fast-glob": "3.3.3",
"jsdom": "29.1.1",
"wesper": "0.0.2"
},
"devDependencies": {
"@types/jsdom": "28.0.0",
"@types/node": "22.19.9",
"tsup": "8.5.1",
"tsx": "4.23.0",
"typescript": "5.9.3",
"vitest": "4.1.10"
},
"overrides": {
"uuid": "11.1.1",
"esbuild": "0.28.1",
"@wordpress/vips": "npm:empty-npm-package@1.0.0",
"wasm-vips": "npm:empty-npm-package@1.0.0"
}
}