-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "@alan-jowett/promptkit",
"version": "0.6.1",
"description": "Composable prompt toolkit for software engineers. Launch an interactive LLM session to assemble task-specific prompts from reusable personas, protocols, formats, and templates.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/promptkit.git",
"directory": "cli"
},
"bin": {
"promptkit": "bin/cli.js"
},
"files": [
"bin/",
"lib/",
"content/"
],
"scripts": {
"prepublishOnly": "node scripts/copy-content.js",
"prepare": "node scripts/copy-content.js",
"pretest": "node scripts/copy-content.js",
"test": "node --test --test-concurrency=1 tests/cli.test.js tests/list.test.js tests/search-show.test.js tests/launch.test.js tests/copy-content.test.js"
},
"dependencies": {
"commander": "^12.0.0",
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"prompt-engineering",
"llm",
"ai",
"copilot",
"codex",
"prompt-templates",
"agentic-ai",
"developer-tools"
]
}