-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.56 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.56 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
122
123
124
125
126
127
128
{
"name": "hulla",
"version": "0.0.0-alpha.1",
"description": "CLI tooling for the @hulla ecosystem",
"author": {
"name": "Samuel Hulla",
"email": "hulla@hulla.dev",
"url": "https://hulla.dev"
},
"maintainers": [
"Samuel Hulla <hulla@hulla.dev>"
],
"homepage": "https://hulla.dev/projects/cli",
"repository": {
"type": "git",
"url": "https://github.com/hulladev/cli.git"
},
"packageManager": "bun@1.3.9",
"files": [
"dist"
],
"bin": "./dist/bin.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "bun test",
"gen:schema": "bun scripts/generate-schema.ts",
"build": "bun run gen:schema && bun build --compile ./src/bin/index.ts --outfile ./dist/hulla",
"build:targets": "bun run gen:schema && bun build --compile --target=bun-linux-x64 ./src/bin/index.ts --outfile ./dist/hulla-linux && bun build --compile --target=bun-darwin-arm64 ./src/bin/index.ts --outfile ./dist/hulla-macos-arm64 && bun build --compile --target=bun-windows-x64 ./src/bin/index.ts --outfile ./dist/hulla-windows.exe"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"@hulla/args": "^0.0.4",
"@hulla/control": "^0.0.3",
"@hulla/gittar": "^0.0.4",
"picocolors": "^1.1.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@eslint/js": "^9.28.0",
"@hulla/ui": "^0.0.0",
"@types/bun": "1.3.9",
"commitizen": "^4.3.1",
"cz-emoji": "1.3.2-canary.2",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"zod-to-json-schema": "^3.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"skipScope": true,
"scopes": [
"cli",
"repo"
],
"types": [
{
"emoji": "✅",
"code": ":white_check_mark: feat:",
"description": "a new functionality",
"name": "feat"
},
{
"emoji": "🐞",
"code": ":lady_beetle: fix:",
"description": "a bug fix",
"name": "fix"
},
{
"emoji": "🔧",
"code": ":wrench: update:",
"description": "a code change that neither fixes a bug nor adds a feature",
"name": "update"
},
{
"emoji": "📚",
"code": ":books: docs:",
"description": "documentations",
"name": "docs"
},
{
"emoji": "🧪",
"code": ":test_tube: tests:",
"description": "tests",
"name": "tests"
},
{
"emoji": "🪛",
"code": ":screwdriver: config:",
"description": "configuration files",
"name": "config"
},
{
"emoji": "🤖",
"code": ":robot: devops:",
"description": "ci/cd or other form of automation",
"name": "devops"
},
{
"emoji": "♻️",
"code": ":recycle: cleanup:",
"description": "code cleanup",
"name": "cleanup"
},
{
"emoji": "📦",
"code": ":package: release:",
"description": "new release bundle",
"name": "release"
}
]
}
}
}