@zigrivers/surface-core 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +15 -0
- package/dist/chunk-LQZM4L5I.js +28 -0
- package/dist/chunk-LQZM4L5I.js.map +1 -0
- package/dist/index.d.ts +1753 -0
- package/dist/index.js +11958 -0
- package/dist/index.js.map +1 -0
- package/dist/interfaces-OHgLgNLO.d.ts +2665 -0
- package/dist/interfaces.d.ts +2 -0
- package/dist/interfaces.js +9 -0
- package/dist/interfaces.js.map +1 -0
- package/package.json +83 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { d as ArtifactWriter, B as Backlog, e as BacklogEntry, h as Baseline, l as BuiltInCaptureBackendId, m as BuiltInIssueExportTarget, n as BuiltInReportFormat, C as Capture, o as CaptureArtifact, p as CaptureArtifactType, q as CaptureBackend, u as CaptureNetworkPolicy, v as CaptureOptions, w as CaptureStatus, x as Citation, G as ComponentMap, H as ComponentMapEntry, T as DegradationReport, a9 as FRESHNESS_VOLATILITIES, aq as FrameworkAdapter, ar as Freshness, as as FreshnessVolatility, au as GateEvaluationContext, av as GateEvaluator, ax as GatePolicy, aA as GateResult, aB as GroundingTool, aG as IssueExport, aH as IssueExportTarget, aI as IssueExporter, aK as KNOWLEDGE_CATEGORIES, aL as KnowledgeCategory, aM as KnowledgeEntry, aN as KnowledgeSource, aO as Lens, aP as LensContext, aQ as LocalBacklogRef, a$ as ModelProvider, b9 as PersistArtifactIntent, ba as PersistedArtifactRef, bd as ProjectBacklogSnapshot, be as ProjectFindingSnapshot, bf as ProjectRunRecord, bg as ProjectStateSnapshot, bh as ProjectVerdictSnapshot, bm as RelevanceQuery, bn as Report, bo as ReportFormat, bp as ReportRenderer, bC as SourceFileRef, bI as StateStore, bY as Target, bZ as TargetKind, b$ as TargetVerification, c0 as Theme, c1 as ToolResult, cb as Viewport, cc as ViewportLabel } from './interfaces-OHgLgNLO.js';
|
|
2
|
+
import 'zod';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zigrivers/surface-core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"default": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./interfaces": {
|
|
13
|
+
"types": "./dist/interfaces.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@noble/hashes": "^2.2.0",
|
|
23
|
+
"@octokit/rest": "^22.0.1",
|
|
24
|
+
"execa": "^9.6.1",
|
|
25
|
+
"gray-matter": "^4.0.3",
|
|
26
|
+
"pino": "10.3.1",
|
|
27
|
+
"proper-lockfile": "^4.1.2",
|
|
28
|
+
"retext": "^9.0.0",
|
|
29
|
+
"retext-english": "^5.0.0",
|
|
30
|
+
"retext-equality": "^7.1.0",
|
|
31
|
+
"retext-readability": "^8.0.0",
|
|
32
|
+
"write-file-atomic": "^6.0.0",
|
|
33
|
+
"yaml": "^2.4.2",
|
|
34
|
+
"zod": "^4.1.13"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/node": "^22.13.0",
|
|
38
|
+
"@types/proper-lockfile": "^4.1.4",
|
|
39
|
+
"@types/write-file-atomic": "^4.0.3",
|
|
40
|
+
"eslint": "^9.39.4",
|
|
41
|
+
"tsup": "^8.5.1",
|
|
42
|
+
"typescript": "^5.9.3",
|
|
43
|
+
"vitest": "^4.0.14"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"playwright": "^1.60.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependenciesMeta": {
|
|
49
|
+
"playwright": {
|
|
50
|
+
"optional": true
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"description": "Core schemas, state, scoring, and orchestration for Surface",
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"homepage": "https://github.com/zigrivers/surface#readme",
|
|
56
|
+
"repository": {
|
|
57
|
+
"type": "git",
|
|
58
|
+
"url": "git+https://github.com/zigrivers/surface.git",
|
|
59
|
+
"directory": "packages/core"
|
|
60
|
+
},
|
|
61
|
+
"bugs": {
|
|
62
|
+
"url": "https://github.com/zigrivers/surface/issues"
|
|
63
|
+
},
|
|
64
|
+
"keywords": [
|
|
65
|
+
"surface",
|
|
66
|
+
"ui-audit",
|
|
67
|
+
"core",
|
|
68
|
+
"accessibility"
|
|
69
|
+
],
|
|
70
|
+
"publishConfig": {
|
|
71
|
+
"access": "public",
|
|
72
|
+
"provenance": true
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsup",
|
|
76
|
+
"build:smoke": "node scripts/build-smoke.mjs",
|
|
77
|
+
"clean": "rm -rf dist coverage .turbo",
|
|
78
|
+
"lint": "eslint .",
|
|
79
|
+
"test": "vitest run",
|
|
80
|
+
"test:watch": "vitest",
|
|
81
|
+
"typecheck": "tsc --noEmit && tsc -p scripts/tsconfig.json"
|
|
82
|
+
}
|
|
83
|
+
}
|