-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.53 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.53 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@finografic/gli",
"type": "module",
"version": "1.25.4",
"description": "Git CLI, Live PR Dashboard",
"homepage": "https://github.com/finografic/gli",
"repository": {
"type": "git",
"url": "git+https://github.com/finografic/gli.git"
},
"bugs": {
"url": "https://github.com/finografic/gli/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": {
"name": "Justin Rankin",
"email": "justin.blair.rankin@gmail.com",
"url": "https://github.com/finografic"
},
"license": "MIT",
"keywords": [
"finografic",
"gli",
"genx:type:cli",
"cli"
],
"main": "./dist/cli.mjs",
"types": "./dist/cli.d.mts",
"module": "./dist/cli.mjs",
"files": [
"dist"
],
"exports": {
".": "./dist/cli.mjs",
"./package.json": "./package.json"
},
"bin": {
"gli": "./dist/cli.mjs"
},
"scripts": {
"---------- DEV_AND_BUILD": "---------------------------------------------",
"dev": "tsdown --watch",
"dev:cli": "NODE_ENV=development tsx src/cli.ts --",
"link": "pnpm build && pnpm link --global",
"unlink": "pnpm unlink --global",
"build": "tsdown",
"·········· TESTING": "···················································",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"·········· LINTING": "···················································",
"lint": "oxlint -c oxlint.config.ts",
"lint:fix": "oxlint -c oxlint.config.ts --fix",
"lint:md": "md-lint",
"lint:md:fix": "md-lint --fix",
"lint:ci": "oxlint -c oxlint.config.ts --quiet",
"·········· FORMATTING": "················································",
"format:check": "oxfmt --check",
"format:fix": "oxfmt",
"·········· PUBLISH:GITHUB": "············································",
"release:github:patch": "pnpm run release:check && pnpm version patch && git push --follow-tags",
"release:github:minor": "pnpm run release:check && pnpm version minor && git push --follow-tags",
"release:github:major": "pnpm run release:check && pnpm version major && git push --follow-tags",
"release:check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test:run",
"release:publish": "pnpm publish --registry https://npm.pkg.github.com",
"·········· REGISTRIES": "················································",
"view:registry:github": "pnpm view @finografic/gli --registry=https://npm.pkg.github.com",
"·········· PACKAGES": "··················································",
"update:cli-kit": "pnpm update @finografic/cli-kit --latest",
"update:deps:all": "pnpm update --latest",
"update:oxc-config": "pnpm update @finografic/oxc-config --latest && pnpm update oxfmt --latest && pnpm update oxlint --latest",
"·········· UTILS": "·····················································",
"tsc:debug": "tsc --pretty --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prepack": "pnpm build",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@finografic/cli-kit": "^1.4.0",
"execa": "^9.6.1",
"log-update": "^7.1.0",
"picocolors": "^1.1.1",
"tsx": "^4.21.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@finografic/md-lint": "^0.9.7",
"@finografic/oxc-config": "^2.6.2",
"@finografic/project-scripts": "^1.3.3",
"@types/node": "24.12.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"oxlint-tsgolint": "^0.23.0",
"tsdown": "^0.22.1",
"typescript": "6.0.2",
"vitest": "^4.1.7"
},
"packageManager": "pnpm@10.32.1",
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint -c oxlint.config.ts --fix --no-error-on-unmatched-pattern"
],
"*.md": [
"oxfmt --no-error-on-unmatched-pattern",
"md-lint --fix"
],
"*.{json,jsonc,yml,yaml,toml}": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"engines": {
"node": ">=24.3.0"
}
}