-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "plain-git",
"version": "1.0.0-beta.1",
"description": "A lightweight cross-platform CLI & library to perform Git operations using plain language commands — no dependencies, pure Node.js.",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/cli/index.ts",
"dev": "tsx -r tsconfig-paths/register src/cli/index.ts",
"build": "rimraf dist && tsc",
"clean": "rimraf dist",
"cli": "tsx src/cli/index.ts",
"test": "vitest"
},
"bin": {
"plain-git": "./dist/cli/index.js"
},
"keywords": [
"git",
"plain-git",
"cli",
"typescript",
"automation",
"developer-tools"
],
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=16"
},
"author": "Aditya Prakash",
"homepage": "https://github.com/prakashaditya13/plain-git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/prakashaditya13/plain-git.git"
},
"bugs": {
"url": "https://github.com/prakashaditya13/plain-git/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"execa": "^9.6.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.6",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"strip-ansi": "^7.1.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
},
"dependencies": {
"chalk": "^5.6.2",
"figlet": "^1.9.3",
"inquirer": "^12.11.0"
}
}