@hachej/boring-governance 0.1.64
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 +21 -0
- package/README.md +33 -0
- package/dist/front/index.d.ts +60 -0
- package/dist/front/index.js +137 -0
- package/dist/server/index.d.ts +176 -0
- package/dist/server/index.js +933 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hachej/boring-governance",
|
|
3
|
+
"version": "0.1.64",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"description": "Reusable boring-ui tenant governance plugin: YAML policy loading, model filtering, budget metering, company-context bindings, and Company Admin UI.",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/hachej/boring-ui"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/hachej/boring-ui",
|
|
13
|
+
"boring": {
|
|
14
|
+
"id": "boring-governance",
|
|
15
|
+
"label": "Governance",
|
|
16
|
+
"front": "dist/front/index.js",
|
|
17
|
+
"server": false
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/front/index.d.ts",
|
|
26
|
+
"import": "./dist/front/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./front": {
|
|
29
|
+
"types": "./dist/front/index.d.ts",
|
|
30
|
+
"import": "./dist/front/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./server": {
|
|
33
|
+
"types": "./dist/server/index.d.ts",
|
|
34
|
+
"import": "./dist/server/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./package.json": "./package.json"
|
|
37
|
+
},
|
|
38
|
+
"sideEffects": false,
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
41
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
42
|
+
"@hachej/boring-core": "0.1.64",
|
|
43
|
+
"@hachej/boring-agent": "0.1.64",
|
|
44
|
+
"@hachej/boring-bash": "0.1.64",
|
|
45
|
+
"@hachej/boring-ui-kit": "0.1.64"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"yaml": "^2.9.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
52
|
+
"@testing-library/react": "^16.3.0",
|
|
53
|
+
"@types/node": "^22.0.0",
|
|
54
|
+
"@types/react": "^19.0.0",
|
|
55
|
+
"@types/react-dom": "^19.0.0",
|
|
56
|
+
"@vitejs/plugin-react": "^4.0.0",
|
|
57
|
+
"fastify": "^5.3.3",
|
|
58
|
+
"jsdom": "^29.0.2",
|
|
59
|
+
"react": "^19.0.0",
|
|
60
|
+
"react-dom": "^19.0.0",
|
|
61
|
+
"tsup": "^8.4.0",
|
|
62
|
+
"typescript": "~5.9.3",
|
|
63
|
+
"vitest": "^3.2.6",
|
|
64
|
+
"@hachej/boring-bash": "0.1.64",
|
|
65
|
+
"@hachej/boring-agent": "0.1.64",
|
|
66
|
+
"@hachej/boring-ui-kit": "0.1.64",
|
|
67
|
+
"@hachej/boring-core": "0.1.64"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"build": "tsup",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"test": "vitest run --no-file-parallelism",
|
|
73
|
+
"lint": "pnpm run typecheck",
|
|
74
|
+
"clean": "rm -rf dist .tsbuildinfo"
|
|
75
|
+
}
|
|
76
|
+
}
|