@oddessentials/repo-standards 1.0.1

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.
@@ -0,0 +1,21 @@
1
+ export type StackId = "typescript-js" | "csharp-dotnet" | "python";
2
+ export type CiSystem = "azure-devops" | "github-actions";
3
+ export interface MasterJson {
4
+ version: number;
5
+ meta?: any;
6
+ ciSystems: CiSystem[];
7
+ stacks: Record<StackId, {
8
+ label: string;
9
+ languageFamily: string;
10
+ }>;
11
+ checklist: any;
12
+ }
13
+ export interface StackChecklistJson {
14
+ version: number;
15
+ stack: StackId;
16
+ stackLabel: string;
17
+ ciSystems: CiSystem[];
18
+ meta?: any;
19
+ checklist: any;
20
+ }
21
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,OAAO,GAAG,eAAe,GAAG,eAAe,GAAG,QAAQ,CAAC;AACnE,MAAM,MAAM,QAAQ,GAAG,cAAc,GAAG,gBAAgB,CAAC;AAEzD,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC,OAAO,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,cAAc,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACnE,SAAS,EAAE,GAAG,CAAC;CAChB;AAED,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,SAAS,EAAE,GAAG,CAAC;CAChB"}
package/dist/types.js ADDED
@@ -0,0 +1,2 @@
1
+ // src/types.ts
2
+ export {};
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@oddessentials/repo-standards",
3
+ "private": false,
4
+ "version": "1.0.1",
5
+ "description": "Standards and CI filtering utilities for multi-stack repository governance.",
6
+ "type": "module",
7
+ "scripts": {
8
+ "dev": "ts-node-dev --respawn --transpile-only src/index.ts",
9
+ "build": "tsc -p tsconfig.build.json && tsx scripts/build.ts",
10
+ "start": "node dist/index.js",
11
+ "lint": "eslint .",
12
+ "format": "prettier . --write",
13
+ "format:check": "prettier . --check",
14
+ "test": "vitest run",
15
+ "typecheck": "tsc --noEmit",
16
+ "prepare": "husky",
17
+ "ci": "npm run lint && npm run format:check && npm run typecheck && npm run test && npm run build",
18
+ "generate:standards": "tsx scripts/generate-standards.ts",
19
+ "verify": "npm run ci"
20
+ },
21
+ "devDependencies": {
22
+ "@commitlint/cli": "^20.2.0",
23
+ "@commitlint/config-conventional": "^20.2.0",
24
+ "@semantic-release/changelog": "^6.0.3",
25
+ "@semantic-release/git": "^10.0.1",
26
+ "@semantic-release/npm": "^9.0.2",
27
+ "@semantic-release/github": "^9.0.2",
28
+ "semantic-release": "^24.2.0",
29
+ "@types/node": "^24.10.1",
30
+ "@typescript-eslint/eslint-plugin": "^8.48.1",
31
+ "@typescript-eslint/parser": "^8.48.1",
32
+ "coverage-v8": "^0.0.1-security",
33
+ "eslint": "^9.39.1",
34
+ "globals": "^16.5.0",
35
+ "happy-dom": "^20.0.11",
36
+ "husky": "^9.1.7",
37
+ "lint-staged": "^16.2.7",
38
+ "prettier": "^3.7.4",
39
+ "ts-node": "^10.9.2",
40
+ "tsx": "^4.7.2",
41
+ "typescript": "^5.9.3",
42
+ "vitest": "^4.0.15"
43
+ },
44
+ "engines": {
45
+ "node": ">=20 <21"
46
+ },
47
+ "lint-staged": {
48
+ "*.{js,ts,mjs,json,md}": [
49
+ "prettier --write"
50
+ ],
51
+ "*.{js,ts,mjs}": [
52
+ "eslint --fix"
53
+ ]
54
+ },
55
+ "license": "MIT",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "https://github.com/oddessentials/repo-standards.git"
59
+ },
60
+ "homepage": "https://github.com/oddessentials/repo-standards#readme",
61
+ "bugs": {
62
+ "url": "https://github.com/oddessentials/repo-standards/issues"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ },
67
+ "main": "./dist/index.js",
68
+ "types": "./dist/index.d.ts",
69
+ "exports": {
70
+ ".": {
71
+ "import": "./dist/index.js",
72
+ "types": "./dist/index.d.ts"
73
+ },
74
+ "./config/*": "./dist/config/*",
75
+ "./schema/*": "./dist/schema/*"
76
+ },
77
+ "files": [
78
+ "dist/",
79
+ "README.md",
80
+ "LICENSE"
81
+ ]
82
+ }