@rayhanadev/purdue-menus 0.1.0

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,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,55 @@
1
+ {
2
+ "name": "@rayhanadev/purdue-menus",
3
+ "version": "0.1.0",
4
+ "description": "A terminal UI for browsing Purdue University dining court menus",
5
+ "keywords": [
6
+ "cli",
7
+ "dining",
8
+ "menu",
9
+ "purdue",
10
+ "tui"
11
+ ],
12
+ "homepage": "https://github.com/rayhanadev/purdue-menu-tui",
13
+ "bugs": "https://github.com/rayhanadev/purdue-menu-tui/issues",
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/rayhanadev/purdue-menu-tui.git"
18
+ },
19
+ "bin": {
20
+ "pmenu": "dist/index.js"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "type": "module",
26
+ "scripts": {
27
+ "dev": "bun run --watch src/index.tsx",
28
+ "build": "bun build src/index.tsx --outdir dist --target bun --minify --banner '#!/usr/bin/env bun' && chmod +x dist/index.js",
29
+ "prepublishOnly": "bun run build",
30
+ "format": "oxfmt",
31
+ "lint": "oxlint",
32
+ "typecheck": "tsc --noEmit"
33
+ },
34
+ "dependencies": {
35
+ "jotai": "^2.18.0"
36
+ },
37
+ "devDependencies": {
38
+ "@babel/core": "^7.29.0",
39
+ "@factory/eslint-plugin": "^0.1.0",
40
+ "@opentui/core": "^0.1.86",
41
+ "@opentui/react": "^0.1.86",
42
+ "@types/bun": "latest",
43
+ "@types/react": "^19.2.14",
44
+ "effect": "^3.19.19",
45
+ "eslint": "^10.0.2",
46
+ "oxfmt": "^0.36.0",
47
+ "oxlint": "^1.51.0",
48
+ "oxlint-tsgolint": "^0.16.0",
49
+ "react": "^19.2.4",
50
+ "typescript": "^5"
51
+ },
52
+ "engines": {
53
+ "bun": ">=1"
54
+ }
55
+ }