-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.36 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
{
"name": "@veripsa/webhook-spec",
"version": "1.0.0",
"description": "Versioned public integration contract, JSON Schemas, examples, and TypeScript declarations for the Veripsa GitHub App surface.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/GetVeripsa/veripsa-webhook-spec.git"
},
"bugs": {
"url": "https://github.com/GetVeripsa/veripsa-webhook-spec/issues"
},
"homepage": "https://veripsa.com/docs",
"keywords": [
"veripsa",
"github-app",
"github-checks",
"webhooks",
"ai-agents",
"pull-requests",
"json-schema",
"typescript"
],
"files": [
"README.md",
"CHANGELOG.md",
"COMPATIBILITY.md",
"TRUTH_MATRIX.md",
"CHECK_STATES.md",
"WEBHOOK_EVENTS.md",
"DATA_HANDLING.md",
"EVENTS.md",
"OUTPUT.md",
"ACK_LABEL.md",
"contract/",
"schemas/",
"examples/",
"types/"
],
"exports": {
"./contract/check-states": "./contract/check-states.json",
"./contract/webhook-events": "./contract/webhook-events.json",
"./schemas/check-run-signal": "./schemas/check-run-signal.schema.json",
"./schemas/pr-comment-surface": "./schemas/pr-comment-surface.schema.json",
"./schemas/webhook-routing-envelope": "./schemas/webhook-routing-envelope.schema.json",
"./schemas/webhook-routing-event": "./schemas/webhook-routing-event.schema.json",
"./schemas/ack-label": "./schemas/ack-label.schema.json",
"./types": "./types/index.d.ts"
},
"types": "./types/index.d.ts",
"scripts": {
"generate": "node scripts/generate-contract.mjs && node scripts/generate-events.mjs",
"check:json": "node scripts/check-json.mjs",
"check:schema": "python3 scripts/check-schema.py",
"check:examples": "python3 scripts/check-examples.py",
"check:types": "node scripts/check-types.mjs",
"check:contract": "node scripts/generate-contract.mjs --check && node scripts/generate-events.mjs --check && node scripts/check-contract.mjs",
"check:links": "python3 scripts/check-links.py",
"check": "npm run check:json && npm run check:schema && npm run check:examples && npm run check:types && npm run check:contract && npm run check:links",
"pack:dry-run": "npm pack --dry-run"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"devDependencies": {
"typescript": "5.8.3"
}
}