-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.08 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@dreamfactory/create",
"version": "0.1.0",
"description": "Zero-friction DreamFactory setup: Spin up governed database APIs with MCP integration for Claude AI in minutes. Supports 25+ databases with field-level RBAC, identity passthrough, and audit logging.",
"type": "module",
"bin": {
"create-dreamfactory": "./dist/index.js"
},
"files": [
"dist",
"templates",
"docs",
"CONTRIBUTING.md",
"ROADMAP.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Tests coming soon\" && exit 0"
},
"keywords": [
"dreamfactory",
"database-api",
"rest-api",
"postgresql",
"mysql",
"mongodb",
"oracle",
"sql-server",
"snowflake",
"claude",
"claude-desktop",
"mcp",
"model-context-protocol",
"ai-agent",
"ai-database",
"llm-database",
"llm-tools",
"chatgpt-database",
"rbac",
"field-level-security",
"database-governance",
"pii-protection",
"sql-injection-prevention",
"api-gateway",
"database-proxy",
"secure-database-access",
"audit-logging",
"identity-passthrough",
"low-code",
"self-hosted",
"docker",
"docker-compose",
"quickstart",
"scaffolding",
"ai-security",
"prompt-injection-protection"
],
"author": "DreamFactory Software, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dreamfactorysoftware/create-dreamfactory.git"
},
"bugs": {
"url": "https://github.com/dreamfactorysoftware/create-dreamfactory/issues"
},
"homepage": "https://github.com/dreamfactorysoftware/create-dreamfactory#readme",
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"commander": "^13.0.0",
"chalk": "^5.3.0",
"ora": "^8.1.0",
"execa": "^9.5.0",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.7.0",
"tsx": "^4.20.0"
},
"engines": {
"node": ">=18.0.0"
}
}