fraim-framework 2.0.74 → 2.0.76

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 CHANGED
@@ -1,106 +1,116 @@
1
- {
2
- "name": "fraim-framework",
3
- "version": "2.0.74",
4
- "description": "FRAIM v2: Framework for Rigor-based AI Management - Transform from solo developer to AI manager orchestrating production-ready code with enterprise-grade discipline",
5
- "main": "index.js",
6
- "bin": {
7
- "fraim": "./index.js",
8
- "fraim-mcp": "./bin/fraim-mcp.js"
9
- },
10
- "scripts": {
11
- "dev": "tsx --watch src/fraim-mcp-server.ts > server.log 2>&1",
12
- "dev:prod": "npm run build && node dist/src/fraim-mcp-server.js > server.log 2>&1",
13
- "build": "tsc && npm run build:stubs && node scripts/copy-ai-manager-rules.js && npm run validate:registry && tsx scripts/validate-purity.ts",
14
- "build:stubs": "tsx scripts/build-stub-registry.ts",
15
- "test": "node scripts/test-with-server.js",
16
- "start:fraim": "tsx src/fraim-mcp-server.ts",
17
- "dev:fraim": "tsx --watch src/fraim-mcp-server.ts",
18
- "serve:website": "node fraim-pro/serve.js",
19
- "watch:fraimlogs": "tsx scripts/watch-fraim-logs.ts > prodlogs.log 2>&1",
20
- "manage-keys": "tsx scripts/fraim/manage-keys.ts",
21
- "view-signups": "tsx scripts/view-signups.ts",
22
- "fraim:init": "npm run build && node index.js init",
23
- "fraim:sync": "node index.js sync --local",
24
- "postinstall": "fraim sync --skip-updates || echo 'FRAIM setup skipped.'",
25
- "prepublishOnly": "npm run build",
26
- "release": "npm version patch && npm publish",
27
- "test-smoke-ci": "tsx --test tests/test-genericization.ts tests/test-cli.ts tests/test-stub-registry.ts",
28
- "test-all-ci": "node scripts/test-with-server.js",
29
- "validate:registry": "tsx scripts/verify-registry-paths.ts && npm run validate:workflows && npm run validate:platform-agnostic",
30
- "validate:workflows": "tsx scripts/validate-workflows.ts",
31
- "validate:platform-agnostic": "tsx scripts/validate-platform-agnostic.ts"
32
- },
33
- "repository": {
34
- "type": "git",
35
- "url": "git+https://github.com/mathursrus/FRAIM.git"
36
- },
37
- "keywords": [
38
- "fraim",
39
- "ai-management",
40
- "ai-coordination",
41
- "ai-agents",
42
- "multi-agent",
43
- "github",
44
- "workflow",
45
- "automation",
46
- "gitops",
47
- "cursor",
48
- "claude",
49
- "windsurf",
50
- "rigor",
51
- "enterprise",
52
- "framework",
53
- "ai-managers"
54
- ],
55
- "author": "Sid Mathur <sid.mathur@gmail.com>",
56
- "license": "MIT",
57
- "bugs": {
58
- "url": "https://github.com/mathursrus/FRAIM/issues"
59
- },
60
- "homepage": "https://github.com/mathursrus/FRAIM#readme",
61
- "engines": {
62
- "node": ">=16.0.0"
63
- },
64
- "devDependencies": {
65
- "@types/cors": "^2.8.19",
66
- "@types/express": "^5.0.6",
67
- "@types/node": "^20.0.0",
68
- "@types/prompts": "^2.4.9",
69
- "fast-glob": "^3.3.3",
70
- "html-to-docx": "^1.8.0",
71
- "markdown-it": "^14.1.0",
72
- "markdown-it-highlightjs": "^4.2.0",
73
- "pptxgenjs": "^4.0.1",
74
- "puppeteer": "^24.36.1",
75
- "qrcode": "^1.5.4",
76
- "sharp": "^0.34.5",
77
- "tsx": "^4.0.0",
78
- "typescript": "^5.0.0"
79
- },
80
- "files": [
81
- "dist/src/local-mcp-server/",
82
- "dist/src/cli/",
83
- "dist/src/core/",
84
- "bin/fraim.js",
85
- "bin/fraim-mcp.js",
86
- "index.js",
87
- "README.md",
88
- "CHANGELOG.md",
89
- "LICENSE",
90
- "package.json"
91
- ],
92
- "publishConfig": {
93
- "access": "public"
94
- },
95
- "dependencies": {
96
- "axios": "^1.7.0",
97
- "chalk": "4.1.2",
98
- "commander": "^14.0.2",
99
- "dotenv": "^16.4.7",
100
- "prompts": "^2.4.2",
101
- "tree-kill": "^1.2.2",
102
- "express": "^5.2.1",
103
- "cors": "^2.8.5",
104
- "mongodb": "^7.0.0"
105
- }
106
- }
1
+ {
2
+ "name": "fraim-framework",
3
+ "version": "2.0.76",
4
+ "description": "FRAIM v2: Framework for Rigor-based AI Management - Transform from solo developer to AI manager orchestrating production-ready code with enterprise-grade discipline",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "fraim": "./index.js",
8
+ "fraim-framework": "./index.js",
9
+ "fraim-mcp": "./bin/fraim-mcp.js"
10
+ },
11
+ "scripts": {
12
+ "dev": "tsx --watch src/fraim-mcp-server.ts > server.log 2>&1",
13
+ "dev:prod": "npm run build && node dist/src/fraim-mcp-server.js > server.log 2>&1",
14
+ "build": "tsc && npm run build:stubs && node scripts/copy-ai-manager-rules.js && npm run validate:registry && tsx scripts/validate-purity.ts",
15
+ "build:stubs": "tsx scripts/build-stub-registry.ts",
16
+ "test-all": "npm run test && npm run test:ui",
17
+ "test": "node scripts/test-with-server.js",
18
+ "test:ui": "playwright test",
19
+ "test:ui:headed": "playwright test --headed",
20
+ "start:fraim": "tsx src/fraim-mcp-server.ts",
21
+ "dev:fraim": "tsx --watch src/fraim-mcp-server.ts",
22
+ "serve:website": "node fraim-pro/serve.js",
23
+ "watch:fraimlogs": "tsx scripts/watch-fraim-logs.ts > prodlogs.log 2>&1",
24
+ "manage-keys": "tsx scripts/fraim/manage-keys.ts",
25
+ "view-signups": "tsx scripts/view-signups.ts",
26
+ "fraim:init": "npm run build && node index.js init",
27
+ "fraim:sync": "node index.js sync --local",
28
+ "postinstall": "fraim sync --skip-updates || echo 'FRAIM setup skipped.'",
29
+ "prepublishOnly": "npm run build",
30
+ "release": "npm version patch && npm publish",
31
+ "validate:registry": "tsx scripts/verify-registry-paths.ts && npm run validate:workflows && npm run validate:skills && npm run validate:platform-agnostic && npm run validate:template-namespaces && npm run validate:config-fallbacks && npm run validate:bootstrap-config-coverage && npm run validate:provider-action-mappings",
32
+ "validate:workflows": "tsx scripts/validate-workflows.ts",
33
+ "validate:platform-agnostic": "tsx scripts/validate-platform-agnostic.ts",
34
+ "validate:skills": "tsx scripts/validate-skills.ts",
35
+ "validate:template-namespaces": "tsx scripts/validate-template-namespaces.ts",
36
+ "validate:config-fallbacks": "tsx scripts/validate-config-fallbacks.ts",
37
+ "validate:bootstrap-config-coverage": "tsx scripts/validate-bootstrap-config-coverage.ts",
38
+ "validate:provider-action-mappings": "tsx scripts/validate-provider-action-mappings.ts"
39
+ },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/mathursrus/FRAIM.git"
43
+ },
44
+ "keywords": [
45
+ "fraim",
46
+ "ai-management",
47
+ "ai-coordination",
48
+ "ai-agents",
49
+ "multi-agent",
50
+ "github",
51
+ "workflow",
52
+ "automation",
53
+ "gitops",
54
+ "cursor",
55
+ "claude",
56
+ "windsurf",
57
+ "rigor",
58
+ "enterprise",
59
+ "framework",
60
+ "ai-managers"
61
+ ],
62
+ "author": "Sid Mathur <sid.mathur@gmail.com>",
63
+ "license": "MIT",
64
+ "bugs": {
65
+ "url": "https://github.com/mathursrus/FRAIM/issues"
66
+ },
67
+ "homepage": "https://github.com/mathursrus/FRAIM#readme",
68
+ "engines": {
69
+ "node": ">=16.0.0"
70
+ },
71
+ "devDependencies": {
72
+ "@playwright/test": "^1.58.2",
73
+ "@types/cors": "^2.8.19",
74
+ "@types/express": "^5.0.6",
75
+ "@types/node": "^20.0.0",
76
+ "@types/prompts": "^2.4.9",
77
+ "fast-glob": "^3.3.3",
78
+ "html-to-docx": "^1.8.0",
79
+ "markdown-it": "^14.1.0",
80
+ "markdown-it-highlightjs": "^4.2.0",
81
+ "playwright": "^1.58.2",
82
+ "pptxgenjs": "^4.0.1",
83
+ "puppeteer": "^24.36.1",
84
+ "qrcode": "^1.5.4",
85
+ "sharp": "^0.34.5",
86
+ "tsx": "^4.0.0",
87
+ "typescript": "^5.0.0"
88
+ },
89
+ "files": [
90
+ "dist/src/local-mcp-server/",
91
+ "dist/src/cli/",
92
+ "dist/src/core/",
93
+ "bin/fraim.js",
94
+ "bin/fraim-mcp.js",
95
+ "index.js",
96
+ "README.md",
97
+ "CHANGELOG.md",
98
+ "LICENSE",
99
+ "package.json"
100
+ ],
101
+ "publishConfig": {
102
+ "access": "public"
103
+ },
104
+ "dependencies": {
105
+ "axios": "^1.7.0",
106
+ "chalk": "4.1.2",
107
+ "commander": "^14.0.2",
108
+ "cors": "^2.8.5",
109
+ "dotenv": "^16.4.7",
110
+ "express": "^5.2.1",
111
+ "mongodb": "^7.0.0",
112
+ "prompts": "^2.4.2",
113
+ "stripe": "^20.3.1",
114
+ "tree-kill": "^1.2.2"
115
+ }
116
+ }