-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.62 KB
/
package.json
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
{
"name": "@dawiidio/sprout",
"version": "0.1.9",
"description": "Small CLI tool to automate your workflow",
"main": "dist/exports.js",
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "(concurrently \"tsc -w\" \"tsc-alias -w\")",
"dev": "SPROUT_DEV=true node dist/cliEntrypoint.js --dry-run",
"prepublish": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"jira",
"cli",
"sprout",
"tools",
"dawiidio",
"git",
"workflow",
"automation",
"typescript",
"node",
"cli",
"command-line",
"interface",
"ai",
"task",
"issue"
],
"author": {
"email": "[email protected]",
"name": "Dawid Wojda",
"url": "https://dawiid.io"
},
"bin": {
"sprout": "dist/cliEntrypoint.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dawiidio/sprout"
},
"files": [
"dist",
"package.json"
],
"private": false,
"types": "dist/exports.d.ts",
"license": "MIT",
"dependencies": {
"@dawiidio/tools": "^0.7.3",
"@inquirer/prompts": "^3.3.2",
"@types/mustache": "^4.2.5",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.1",
"murmurhash": "^2.0.1",
"mustache": "^4.2.0",
"ollama": "^0.5.1",
"openai": "^4.49.1",
"ora": "^8.0.1",
"typescript": "^5.3.3",
"yup": "^1.4.0",
"zx": "^7.2.3"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.11.13",
"concurrently": "^8.2.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
}
}