-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 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
{
"name": "@truyman/cli",
"version": "1.5.0",
"description": "Build CLIs. TypeScript does the rest.",
"keywords": [
"arguments",
"cli",
"command-line",
"parser",
"typescript"
],
"homepage": "https://github.com/bentruyman/cli#readme",
"bugs": {
"url": "https://github.com/bentruyman/cli/issues"
},
"license": "MIT",
"author": "Ben Truyman",
"repository": {
"type": "git",
"url": "git+https://github.com/bentruyman/cli.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node && tsc -p tsconfig.build.json",
"check": "bun run typecheck && bun run lint",
"format": "oxfmt && oxlint --fix",
"lint": "oxfmt --check && oxlint",
"prepare": "husky",
"prepublishOnly": "bun run build",
"release": "release-it",
"typecheck": "tsc"
},
"dependencies": {
"kleur": "^4.1.5",
"mri": "^1.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.4",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0",
"release-it": "^19.2.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --fix"
]
}
}