-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.01 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.01 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
{
"name": "prompta",
"version": "1.0.0",
"description": "A powerful CLI tool for managing LLM prompts with parameter substitution and clipboard support",
"main": "dist/bin/index.js",
"types": "dist/bin/index.d.ts",
"bin": {
"prompta": "./dist/bin/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/bin/index.js",
"dev": "ts-node src/bin/index.ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"cli",
"prompt",
"llm",
"ai",
"gpt",
"llama",
"claude",
"clipboard",
"productivity"
],
"author": {
"name": "Sanjay Sunil",
"url": "https://github.com/sanjaysunil"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sanjaysunil/prompta.git"
},
"bugs": {
"url": "https://github.com/sanjaysunil/prompta/issues"
},
"homepage": "https://github.com/sanjaysunil/prompta#readme",
"dependencies": {
"chalk": "^4.1.2",
"clipboardy": "^2.3.0",
"commander": "^9.4.1",
"conf": "^10.2.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.5"
},
"devDependencies": {
"@types/clipboardy": "^2.0.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.15.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{md,json}": [
"prettier --write"
]
}
}