-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.38 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.38 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
{
"name": "@promptg/starter-packs",
"version": "1.0.2",
"description": "Curated PromptG starter packs (templates + prompts) to install with @promptg/cli.",
"license": "Apache-2.0",
"author": "Steve Papa <steve@promptg.io>",
"type": "module",
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"validate": "node validate-assets.cjs",
"format": "prettier --write \"**/*.{json,md}\"",
"format:check": "prettier --check \"**/*.{json,md}\"",
"prepack": "npm run format:check && npm run validate"
},
"repository": {
"type": "git",
"url": "https://github.com/promptg/starter-packs.git"
},
"bugs": {
"url": "https://github.com/promptg/starter-packs/issues"
},
"homepage": "https://promptg.io",
"publishConfig": {
"access": "public"
},
"keywords": [
"promptg",
"starter-packs",
"prompts",
"prompt-template",
"prompt-templates",
"prompt-pack",
"prompt-packs",
"prompts-as-code",
"prompt-engineering",
"prompt-management",
"llm",
"ai",
"generative-ai",
"genai",
"openai",
"chatgpt",
"anthropic",
"claude",
"gemini",
"ollama",
"rag",
"agents",
"mcp",
"cli"
],
"devDependencies": {
"ajv": "8.12.0",
"ajv-formats": "3.0.1",
"prettier": "^3.7.4"
},
"files": [
"packs/",
"prompts/",
"templates/",
"README.md",
"LICENSE"
]
}