-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.12 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
{
"name": "@traisetech/autopilot",
"version": "2.5.0",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"src",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"description": "An intelligent Git automation CLI that safely commits and pushes your code so you can focus on building.",
"keywords": [
"git",
"automation",
"autocommit",
"autopush",
"developer-tools",
"cli",
"productivity",
"git-workflow"
],
"author": "Praise Masunga (PraiseTechzw)",
"license": "MIT",
"type": "commonjs",
"bin": {
"autopilot": "bin/autopilot.js"
},
"main": "src/index.js",
"scripts": {
"dev": "node bin/autopilot.js",
"test": "node --test --test-concurrency=1",
"lint": "node -c bin/autopilot.js && node -c src/index.js",
"verify": "node bin/autopilot.js --help && node bin/autopilot.js doctor && npm test",
"prepublishOnly": "npm run verify",
"release:patch": "npm run verify && npm version patch && git push --follow-tags && echo \"\n🚀 Release initiated! GitHub Action will publish to NPM.\"",
"release:minor": "npm run verify && npm version minor && git push --follow-tags && echo \"\n🚀 Release initiated! GitHub Action will publish to NPM.\"",
"release:major": "npm run verify && npm version major && git push --follow-tags && echo \"\n🚀 Release initiated! GitHub Action will publish to NPM.\""
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PraiseTechzw/autopilot-cli.git"
},
"bugs": {
"url": "https://github.com/PraiseTechzw/autopilot-cli/issues"
},
"homepage": "https://github.com/PraiseTechzw/autopilot-cli#readme",
"dependencies": {
"chokidar": "^3.6.0",
"commander": "^14.0.3",
"csv-writer": "^1.6.0",
"execa": "^5.1.1",
"fs-extra": "^11.3.3",
"ink": "^6.6.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^4.0.0",
"ink-spinner": "^5.0.0",
"node-notifier": "^10.0.1",
"open": "^11.0.0",
"prop-types": "^15.8.1",
"react": "^19.2.4"
},
"directories": {
"doc": "docs",
"test": "test"
}
}