forked from promptg/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.93 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.93 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
{
"name": "@promptg/cli",
"version": "0.9.2",
"description": "Prompts as code: versioned, shareable, standard.",
"type": "module",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"promptg": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"clean": "rimraf dist coverage",
"prepublishOnly": "npm run clean && npm run build && npm test && npm run lint"
},
"keywords": [
"cli",
"prompt",
"ai",
"llm",
"generative-ai",
"prompt-engineering",
"prompt-management",
"prompt-templates",
"prompt-versioning",
"automation",
"cicd",
"developer-tools",
"productivity",
"chatgpt",
"claude",
"gemini",
"templates",
"scaffolding",
"devops"
],
"author": "stevepapa <steve@promptg.io>",
"license": "Apache-2.0",
"engines": {
"node": ">=20.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/promptg/cli"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/promptg/cli/issues"
},
"homepage": "https://promptg.io",
"files": [
"dist",
"schemas",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"@inquirer/external-editor": "^2.0.2",
"chalk": "^5.3.0",
"clipboardy": "^5.0.2",
"commander": "^12.1.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^20.19.28",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"rimraf": "^6.1.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}