@redush/sysconst-validator 1.0.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/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@redush/sysconst-validator",
3
+ "version": "1.0.0",
4
+ "description": "Validator for System Constitution - Enforces architectural governance and structural integrity",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "schema"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format cjs,esm --dts",
21
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
22
+ "test": "vitest",
23
+ "test:run": "vitest run",
24
+ "lint": "eslint src/",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "keywords": [
28
+ "system-constitution",
29
+ "sysconst",
30
+ "validator",
31
+ "architectural-governance",
32
+ "llm",
33
+ "autonomous-generation",
34
+ "structural-integrity"
35
+ ],
36
+ "author": "System Constitution",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/nicholasoxford/system-constitution.git",
41
+ "directory": "validator"
42
+ },
43
+ "dependencies": {
44
+ "ajv": "^8.17.1",
45
+ "ajv-formats": "^3.0.1",
46
+ "yaml": "^2.7.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^22.10.5",
50
+ "tsup": "^8.3.5",
51
+ "typescript": "^5.7.2",
52
+ "vitest": "^2.1.8"
53
+ },
54
+ "engines": {
55
+ "node": ">=18.0.0"
56
+ }
57
+ }