simplecloud 0.0.1-beta.8 → 0.0.1-beta.9
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/dist/cli.js +281 -281
- package/dist/highlights-eq9cgrbb.scm +604 -0
- package/dist/highlights-ghv9g403.scm +205 -0
- package/dist/highlights-hk7bwhj4.scm +284 -0
- package/dist/highlights-r812a2qc.scm +150 -0
- package/dist/highlights-x6tmsnaa.scm +115 -0
- package/dist/index.js +367 -363
- package/dist/injections-73j83es3.scm +27 -0
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
- package/package.json +18 -6
|
@@ -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"))
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplecloud",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.9",
|
|
4
4
|
"description": "simplecloud.app cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -24,21 +24,33 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"dev": "bun run build && bun scripts/build-dev.ts",
|
|
26
26
|
"build": "rm -rf dist && bun build src/index.ts --outdir dist --format esm --minify --target bun --packages=bundle && bun build src/cli.ts --outdir dist --format esm --minify --target bun --packages=bundle && echo '#!/usr/bin/env bun' | cat - dist/cli.js > dist/cli.tmp && mv dist/cli.tmp dist/cli.js",
|
|
27
|
-
"prepublishOnly": "bun run build
|
|
28
|
-
"postpublish": "mv package.json.bak package.json",
|
|
27
|
+
"prepublishOnly": "bun run build",
|
|
29
28
|
"test:cli": "bun run build && bun dist/cli.js --help",
|
|
30
29
|
"local:setup": "bun run build && echo 'alias scl=\"bun '$(pwd)'/dist/cli.js\"' >> ~/.zshrc && echo 'Local alias added! Run: source ~/.zshrc'",
|
|
31
30
|
"local:link": "bun run build && npm link",
|
|
32
31
|
"local:unlink": "npm unlink -g",
|
|
33
|
-
"local:pack": "bun run build &&
|
|
32
|
+
"local:pack": "bun run build && mkdir -p temp && npm pack --pack-destination=./temp && mv ./temp/simplecloud-*.tgz ./temp/simplecloud.tgz",
|
|
34
33
|
"lint": "biome check .",
|
|
35
34
|
"lint:fix": "biome check . --write",
|
|
36
35
|
"generate:api": "swagger-typescript-api generate -p https://controller.platform.simplecloud.app/swagger/doc.json -o src/lib/generated -n simplecloud-api.ts --sort-types --single-http-client --clean-output"
|
|
37
36
|
},
|
|
38
37
|
"devDependencies": {
|
|
39
|
-
"@biomejs/biome": "2.
|
|
40
|
-
"@effect/platform-bun": "^0.
|
|
38
|
+
"@biomejs/biome": "2.3.8",
|
|
39
|
+
"@effect/platform-bun": "^0.86.0",
|
|
41
40
|
"@types/bun": "latest",
|
|
42
41
|
"swagger-typescript-api": "^13.2.16"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"typescript": "^5"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@clack/prompts": "^1.0.0-alpha.6",
|
|
48
|
+
"@effect/cli": "^0.72.1",
|
|
49
|
+
"@opentui/solid": "^0.1.60",
|
|
50
|
+
"better-auth": "^1.4.6",
|
|
51
|
+
"chalk": "^5.6.2",
|
|
52
|
+
"effect": "^3.19.12",
|
|
53
|
+
"solid-js": "^1.9.10",
|
|
54
|
+
"table": "^6.9.0"
|
|
43
55
|
}
|
|
44
56
|
}
|