@voke-sh/voke 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/dist/index.js ADDED
@@ -0,0 +1,64 @@
1
+ import {
2
+ MTQS_VERSION,
3
+ RuleExecutionError,
4
+ RuleRegistry,
5
+ UsageError,
6
+ VOKE_VERSION,
7
+ allRules,
8
+ annotationRules,
9
+ buildProgram,
10
+ buildReport,
11
+ canonicalJson,
12
+ createDefaultRegistry,
13
+ descriptionRules,
14
+ formatHuman,
15
+ formatJson,
16
+ ingestLive,
17
+ maskHeaders,
18
+ namingRules,
19
+ parameterRules,
20
+ readSnapshot,
21
+ resolveLintOpts,
22
+ resolveTarget,
23
+ runLint,
24
+ runRules,
25
+ schemaRules,
26
+ serializeReportBody,
27
+ sha256,
28
+ surfaceContentHash,
29
+ toolContentHash,
30
+ versionString,
31
+ writeSnapshot
32
+ } from "./chunk-GPGK6AMR.js";
33
+ export {
34
+ MTQS_VERSION,
35
+ RuleExecutionError,
36
+ RuleRegistry,
37
+ UsageError,
38
+ VOKE_VERSION,
39
+ allRules,
40
+ annotationRules,
41
+ buildProgram,
42
+ buildReport,
43
+ canonicalJson,
44
+ createDefaultRegistry,
45
+ descriptionRules,
46
+ formatHuman,
47
+ formatJson,
48
+ ingestLive,
49
+ maskHeaders,
50
+ namingRules,
51
+ parameterRules,
52
+ readSnapshot,
53
+ resolveLintOpts,
54
+ resolveTarget,
55
+ runLint,
56
+ runRules,
57
+ schemaRules,
58
+ serializeReportBody,
59
+ sha256,
60
+ surfaceContentHash,
61
+ toolContentHash,
62
+ versionString,
63
+ writeSnapshot
64
+ };
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@voke-sh/voke",
3
+ "version": "0.1.0",
4
+ "description": "Deterministic MCP tool quality linter — MTQS v0.1 reference implementation",
5
+ "type": "module",
6
+ "private": false,
7
+ "license": "Apache-2.0",
8
+ "homepage": "https://voke.sh",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/voke-sh/voke.git",
12
+ "directory": "packages/linter"
13
+ },
14
+ "keywords": ["mcp", "linter", "mtqs", "tool-quality", "ci"],
15
+ "engines": { "node": ">=22" },
16
+ "publishConfig": {
17
+ "access": "public",
18
+ "provenance": true
19
+ },
20
+ "exports": { ".": { "types": "./src/index.ts", "import": "./src/index.ts" } },
21
+ "bin": { "voke": "./dist/cli/index.js" },
22
+ "files": ["dist"],
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "dependencies": {
28
+ "@modelcontextprotocol/sdk": "~1.29.0",
29
+ "ajv": "8.20.0",
30
+ "ajv-formats": "3.0.1",
31
+ "chalk": "5.6.2",
32
+ "commander": "15.0.0",
33
+ "zod": "4.4.3"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^22.0.0",
37
+ "@voke/core": "*",
38
+ "tsup": "^8.5.1",
39
+ "typescript": "^5.6.0"
40
+ }
41
+ }