@jannael/glinter 1.2.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -80
- package/dist/index.js +652 -598
- package/package.json +27 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jannael/glinter",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "A high-performance, transparent Git wrapper with interactive staging",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -34,13 +34,15 @@
|
|
|
34
34
|
".": "./dist/index.js"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
|
-
"build
|
|
38
|
-
"prepublishOnly": "bun run build
|
|
39
|
-
|
|
37
|
+
"build": "bun build ./apps/cli/index.ts --outfile=./dist/index.js --target=bun",
|
|
38
|
+
"prepublishOnly": "bun run build",
|
|
40
39
|
"test": "vitest",
|
|
41
|
-
"lint": "
|
|
42
|
-
"lint:fix": "
|
|
43
|
-
"
|
|
40
|
+
"lint": "oxlint",
|
|
41
|
+
"lint:fix": "oxlint --fix",
|
|
42
|
+
"format": "prettier --write .",
|
|
43
|
+
"format:check": "prettier --check .",
|
|
44
|
+
"type-check": "bunx tsc --noEmit",
|
|
45
|
+
"prepare": "husky"
|
|
44
46
|
},
|
|
45
47
|
"bin": {
|
|
46
48
|
"g": "./dist/index.js"
|
|
@@ -49,16 +51,27 @@
|
|
|
49
51
|
"bun": ">=1.0.0"
|
|
50
52
|
},
|
|
51
53
|
"devDependencies": {
|
|
52
|
-
"@biomejs/biome": "2.4.10",
|
|
53
54
|
"@types/bun": "latest",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
55
|
+
"husky": "9.1.7",
|
|
56
|
+
"oxlint": "1.65.0",
|
|
57
|
+
"prettier": "3.8.3",
|
|
58
|
+
"prettier-plugin-astro": "0.14.1",
|
|
59
|
+
"prettier-plugin-tailwindcss": "0.8.0",
|
|
60
|
+
"vitest": "4.1.6",
|
|
61
|
+
"lint-staged": "17.0.5",
|
|
62
|
+
"wrangler": "4.92.0"
|
|
56
63
|
},
|
|
57
64
|
"peerDependencies": {
|
|
58
|
-
"bun": ">=1.
|
|
59
|
-
"typescript": "
|
|
65
|
+
"bun": ">=1.3.14",
|
|
66
|
+
"typescript": "6.0.3"
|
|
60
67
|
},
|
|
61
68
|
"dependencies": {
|
|
62
|
-
"@clack/prompts": "1.
|
|
69
|
+
"@clack/prompts": "1.4.0"
|
|
70
|
+
},
|
|
71
|
+
"lint-staged": {
|
|
72
|
+
"*.{ts,tsx,js,jsx,astro}": [
|
|
73
|
+
"bun run lint:fix",
|
|
74
|
+
"bun run format"
|
|
75
|
+
]
|
|
63
76
|
}
|
|
64
|
-
}
|
|
77
|
+
}
|