-
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.52 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.52 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": "clones-cli",
"version": "0.3.0",
"description": "A read-only Git repository manager for exploration and reference",
"keywords": [
"git",
"clone",
"repository",
"manager",
"cli"
],
"repository": {
"type": "git",
"url": "git@github.com:lunelson/clones-cli.git"
},
"license": "MIT",
"author": {
"name": "Lu Nelson"
},
"type": "module",
"bin": {
"clones": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "tsx src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepack": "RELEASE=true npm run build",
"prepublishOnly": "npm test",
"release": "np",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"citty": "^0.2.0",
"fast-wrap-ansi": "^0.2.0",
"is-unicode-supported": "^2.1.0",
"picocolors": "^1.1.1",
"simple-git": "^3.30.0",
"sisteransi": "^1.0.5",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.1.0",
"@types/update-notifier": "^6.0.8",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"np": "^11.0.2",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
}
}