@happyvertical/smrt-playbooks 0.44.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,63 @@
1
+ {
2
+ "name": "@happyvertical/smrt-playbooks",
3
+ "version": "0.44.0",
4
+ "description": "Layered playbook registry, app/tenant overrides, and plan resolution for SMRT agents",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "CLAUDE.md",
11
+ "AGENTS.md"
12
+ ],
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js"
17
+ },
18
+ "./manifest": "./dist/manifest.json",
19
+ "./manifest.json": "./dist/manifest.json"
20
+ },
21
+ "dependencies": {
22
+ "@happyvertical/sql": "^0.89.4",
23
+ "@happyvertical/smrt-config": "0.44.0",
24
+ "@happyvertical/smrt-core": "0.44.0",
25
+ "@happyvertical/smrt-tenancy": "0.44.0",
26
+ "@happyvertical/smrt-types": "0.44.0"
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "24.13.2",
30
+ "typescript": "5.9.3",
31
+ "vite": "8.1.4",
32
+ "vitest": "4.1.10",
33
+ "@happyvertical/smrt-vitest": "0.44.0"
34
+ },
35
+ "keywords": [
36
+ "smrt",
37
+ "playbooks",
38
+ "agents",
39
+ "multi-tenancy",
40
+ "configuration"
41
+ ],
42
+ "author": "HappyVertical",
43
+ "license": "MIT",
44
+ "publishConfig": {
45
+ "registry": "https://registry.npmjs.org",
46
+ "access": "public"
47
+ },
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "https://github.com/happyvertical/smrt.git",
51
+ "directory": "packages/playbooks"
52
+ },
53
+ "scripts": {
54
+ "build": "vite build --mode library",
55
+ "build:watch": "vite build --mode library --watch",
56
+ "clean": "rm -rf dist",
57
+ "dev": "vite dev",
58
+ "test": "vitest run",
59
+ "test:watch": "vitest",
60
+ "typecheck": "tsc --noEmit -p tsconfig.json",
61
+ "verify:pack": "node ../../scripts/verify-package-types-exports.js ."
62
+ }
63
+ }