-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.1 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
{
"name": "wesper",
"version": "0.0.3",
"description": "Read a WordPress site's block registry, theme tokens, bindings, fields, patterns, and media into a provenanced agent context manifest.",
"type": "module",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"block-editor",
"block-bindings",
"theme-json",
"site-context",
"introspection",
"wp-cli",
"json-schema",
"ai",
"agent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/humanmade/wesper.git"
},
"homepage": "https://github.com/humanmade/wesper#readme",
"bugs": "https://github.com/humanmade/wesper/issues",
"bin": {
"wesper": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"schemas",
"examples/consumer-helpers.mjs",
"examples/consumer-proof.mjs",
"examples/fixtures/consumer-manifest.json",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run generate:schema && node scripts/clean-dist.mjs && tsup",
"check:package": "node scripts/check-package.mjs",
"clean": "node scripts/clean-dist.mjs",
"dev": "tsx src/cli.ts",
"example:consumer-helpers": "npm run build && node examples/consumer-helpers.mjs",
"example:consumer-proof": "node scripts/run-consumer-proof.mjs",
"generate:schema": "node --import tsx scripts/write-schema.mjs",
"prepack": "npm run build",
"test": "vitest run",
"test:integration": "sh integration/wordpress/run-real-wordpress.sh",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm test && npm run build && npm run check:package"
},
"dependencies": {
"commander": "^14.0.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.20.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
}
}