app-asset-generator 2026.1.1

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.
@@ -0,0 +1,115 @@
1
+ ; Query from: https://raw.githubusercontent.com/nvim-treesitter/nvim-treesitter/99ddf573531c4dbe53f743ecbc1595af5eb1d32f/queries/markdown_inline/highlights.scm
2
+ ; From MDeiml/tree-sitter-markdown
3
+ (code_span) @markup.raw @nospell
4
+
5
+ (emphasis) @markup.italic
6
+
7
+ (strong_emphasis) @markup.strong
8
+
9
+ (strikethrough) @markup.strikethrough
10
+
11
+ (shortcut_link
12
+ (link_text) @nospell)
13
+
14
+ [
15
+ (backslash_escape)
16
+ (hard_line_break)
17
+ ] @string.escape
18
+
19
+ ; Conceal codeblock and text style markers
20
+ ([
21
+ (code_span_delimiter)
22
+ (emphasis_delimiter)
23
+ ] @conceal
24
+ (#set! conceal ""))
25
+
26
+ ; Inline links - style all parts
27
+ (inline_link
28
+ ["[" "(" ")"] @markup.link)
29
+
30
+ (inline_link
31
+ "]" @markup.link.bracket.close)
32
+
33
+ ; Conceal opening bracket
34
+ ((inline_link
35
+ "[" @conceal)
36
+ (#set! conceal ""))
37
+
38
+ ; Conceal closing bracket with space replacement
39
+ ((inline_link
40
+ "]" @conceal)
41
+ (#set! conceal " "))
42
+
43
+ ; Conceal image links
44
+ (image
45
+ [
46
+ "!"
47
+ "["
48
+ "]"
49
+ "("
50
+ (link_destination)
51
+ ")"
52
+ ] @markup.link
53
+ (#set! conceal ""))
54
+
55
+ ; Conceal full reference links
56
+ (full_reference_link
57
+ [
58
+ "["
59
+ "]"
60
+ (link_label)
61
+ ] @markup.link
62
+ (#set! conceal ""))
63
+
64
+ ; Conceal collapsed reference links
65
+ (collapsed_reference_link
66
+ [
67
+ "["
68
+ "]"
69
+ ] @markup.link
70
+ (#set! conceal ""))
71
+
72
+ ; Conceal shortcut links
73
+ (shortcut_link
74
+ [
75
+ "["
76
+ "]"
77
+ ] @markup.link
78
+ (#set! conceal ""))
79
+
80
+ [
81
+ (link_destination)
82
+ (uri_autolink)
83
+ ] @markup.link.url @nospell
84
+
85
+ [
86
+ (link_label)
87
+ (link_text)
88
+ (link_title)
89
+ (image_description)
90
+ ] @markup.link.label
91
+
92
+ ; Replace common HTML entities.
93
+ ((entity_reference) @character.special
94
+ (#eq? @character.special " ")
95
+ (#set! conceal ""))
96
+
97
+ ((entity_reference) @character.special
98
+ (#eq? @character.special "<")
99
+ (#set! conceal "<"))
100
+
101
+ ((entity_reference) @character.special
102
+ (#eq? @character.special "&gt;")
103
+ (#set! conceal ">"))
104
+
105
+ ((entity_reference) @character.special
106
+ (#eq? @character.special "&amp;")
107
+ (#set! conceal "&"))
108
+
109
+ ((entity_reference) @character.special
110
+ (#eq? @character.special "&quot;")
111
+ (#set! conceal "\""))
112
+
113
+ ((entity_reference) @character.special
114
+ (#any-of? @character.special "&ensp;" "&emsp;")
115
+ (#set! conceal " "))
@@ -0,0 +1,27 @@
1
+ ; Query from: https://raw.githubusercontent.com/nvim-treesitter/nvim-treesitter/refs/heads/master/queries/markdown/injections.scm
2
+ (fenced_code_block
3
+ (info_string
4
+ (language) @_lang)
5
+ (code_fence_content) @injection.content
6
+ (#set-lang-from-info-string! @_lang))
7
+
8
+ ((html_block) @injection.content
9
+ (#set! injection.language "html")
10
+ (#set! injection.combined)
11
+ (#set! injection.include-children))
12
+
13
+ ((minus_metadata) @injection.content
14
+ (#set! injection.language "yaml")
15
+ (#offset! @injection.content 1 0 -1 0)
16
+ (#set! injection.include-children))
17
+
18
+ ((plus_metadata) @injection.content
19
+ (#set! injection.language "toml")
20
+ (#offset! @injection.content 1 0 -1 0)
21
+ (#set! injection.include-children))
22
+
23
+ ([
24
+ (inline)
25
+ (pipe_table_cell)
26
+ ] @injection.content
27
+ (#set! injection.language "markdown_inline"))
package/package.json ADDED
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "app-asset-generator",
3
+ "version": "2026.1.1",
4
+ "description": "Generate app icons, splash screens, and adaptive icons for iOS, Android, and Web. CLI and interactive TUI with Google Fonts support.",
5
+ "repository": "guillempuche/app-asset-generator.git",
6
+ "type": "module",
7
+ "main": "./dist/cli.js",
8
+ "types": "./dist/cli.d.ts",
9
+ "bin": {
10
+ "app-asset-generator": "./dist/cli.js"
11
+ },
12
+ "scripts": {
13
+ "dev": "bun run src/cli.ts",
14
+ "tui": "bun run src/index.tsx",
15
+ "build": "bun build src/cli.ts --outdir dist --target node",
16
+ "typecheck": "tsc --noEmit",
17
+ "lint": "biome check --write --no-errors-on-unmatched --max-diagnostics=none",
18
+ "lint:check": "biome check",
19
+ "lint:syncpack": "syncpack format --config syncpack.config.js",
20
+ "prepare": "lefthook install && effect-language-service patch",
21
+ "release": "bun run build && release-it"
22
+ },
23
+ "dependencies": {
24
+ "@clack/prompts": "^0.10.0",
25
+ "@effect/cli": "^0.69.2",
26
+ "@effect/platform": "^0.93.3",
27
+ "@effect/platform-node": "^0.101.1",
28
+ "@opentui/core": "^0.1.72",
29
+ "@opentui/react": "^0.1.72",
30
+ "effect": "^3.19.6",
31
+ "opentype.js": "^1.3.4",
32
+ "picocolors": "^1.1.1",
33
+ "react": "^19.1.0",
34
+ "sharp": "^0.33.5"
35
+ },
36
+ "devDependencies": {
37
+ "@biomejs/biome": "^2.3.8",
38
+ "@csmith/release-it-calver-plugin": "^2023.12.0",
39
+ "@effect/language-service": "^0.62.5",
40
+ "@types/bun": "latest",
41
+ "@types/node": "^22",
42
+ "@types/opentype.js": "^1",
43
+ "@types/react": "^19",
44
+ "lefthook": "^2.0.13",
45
+ "release-it": "^19.2.3",
46
+ "syncpack": "^13.0.4",
47
+ "typescript": "^5.9.3"
48
+ },
49
+ "keywords": [
50
+ "app-icon",
51
+ "app-icons",
52
+ "icon-generator",
53
+ "splash-screen",
54
+ "launch-screen",
55
+ "adaptive-icon",
56
+ "favicon",
57
+ "ios",
58
+ "android",
59
+ "web",
60
+ "pwa",
61
+ "expo",
62
+ "react-native",
63
+ "mobile",
64
+ "cli",
65
+ "tui",
66
+ "google-fonts",
67
+ "asset-generator"
68
+ ],
69
+ "license": "MIT",
70
+ "author": "Guillem Puche",
71
+ "bugs": "https://github.com/guillempuche/app-asset-generator/issues",
72
+ "engines": {
73
+ "node": ">=22"
74
+ },
75
+ "files": [
76
+ "dist",
77
+ "README.md"
78
+ ],
79
+ "homepage": "https://github.com/guillempuche/app-asset-generator#readme"
80
+ }