@luzzle/web.tools 0.0.69
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 +28 -0
- package/dist/src/browser.d.ts +1 -0
- package/dist/src/browser.js +2 -0
- package/dist/src/browser.js.map +1 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +19 -0
- package/dist/src/cli.js.map +1 -0
- package/dist/src/commands/assets/command.d.ts +30 -0
- package/dist/src/commands/assets/command.js +41 -0
- package/dist/src/commands/assets/command.js.map +1 -0
- package/dist/src/commands/assets/index.d.ts +4 -0
- package/dist/src/commands/assets/index.js +79 -0
- package/dist/src/commands/assets/index.js.map +1 -0
- package/dist/src/commands/assets/index.test.d.ts +1 -0
- package/dist/src/commands/assets/index.test.js +419 -0
- package/dist/src/commands/assets/index.test.js.map +1 -0
- package/dist/src/commands/assets/variants.d.ts +8 -0
- package/dist/src/commands/assets/variants.js +23 -0
- package/dist/src/commands/assets/variants.js.map +1 -0
- package/dist/src/commands/assets/variants.test.d.ts +1 -0
- package/dist/src/commands/assets/variants.test.js +48 -0
- package/dist/src/commands/assets/variants.test.js.map +1 -0
- package/dist/src/commands/config/command.d.ts +2 -0
- package/dist/src/commands/config/command.js +42 -0
- package/dist/src/commands/config/command.js.map +1 -0
- package/dist/src/commands/config/index.d.ts +3 -0
- package/dist/src/commands/config/index.js +37 -0
- package/dist/src/commands/config/index.js.map +1 -0
- package/dist/src/commands/config/index.test.d.ts +1 -0
- package/dist/src/commands/config/index.test.js +93 -0
- package/dist/src/commands/config/index.test.js.map +1 -0
- package/dist/src/commands/opengraph/browser.d.ts +3 -0
- package/dist/src/commands/opengraph/browser.js +23 -0
- package/dist/src/commands/opengraph/browser.js.map +1 -0
- package/dist/src/commands/opengraph/browser.test.d.ts +1 -0
- package/dist/src/commands/opengraph/browser.test.js +30 -0
- package/dist/src/commands/opengraph/browser.test.js.map +1 -0
- package/dist/src/commands/opengraph/command.d.ts +30 -0
- package/dist/src/commands/opengraph/command.js +41 -0
- package/dist/src/commands/opengraph/command.js.map +1 -0
- package/dist/src/commands/opengraph/command.test.d.ts +1 -0
- package/dist/src/commands/opengraph/command.test.js +68 -0
- package/dist/src/commands/opengraph/command.test.js.map +1 -0
- package/dist/src/commands/opengraph/html.d.ts +4 -0
- package/dist/src/commands/opengraph/html.js +47 -0
- package/dist/src/commands/opengraph/html.js.map +1 -0
- package/dist/src/commands/opengraph/html.test.d.ts +1 -0
- package/dist/src/commands/opengraph/html.test.js +79 -0
- package/dist/src/commands/opengraph/html.test.js.map +1 -0
- package/dist/src/commands/opengraph/index.d.ts +4 -0
- package/dist/src/commands/opengraph/index.js +47 -0
- package/dist/src/commands/opengraph/index.js.map +1 -0
- package/dist/src/commands/opengraph/index.test.d.ts +1 -0
- package/dist/src/commands/opengraph/index.test.js +162 -0
- package/dist/src/commands/opengraph/index.test.js.map +1 -0
- package/dist/src/commands/opengraph/png.d.ts +3 -0
- package/dist/src/commands/opengraph/png.js +26 -0
- package/dist/src/commands/opengraph/png.js.map +1 -0
- package/dist/src/commands/opengraph/png.test.d.ts +1 -0
- package/dist/src/commands/opengraph/png.test.js +50 -0
- package/dist/src/commands/opengraph/png.test.js.map +1 -0
- package/dist/src/commands/opengraph/svelte.d.ts +7 -0
- package/dist/src/commands/opengraph/svelte.js +77 -0
- package/dist/src/commands/opengraph/svelte.js.map +1 -0
- package/dist/src/commands/opengraph/svelte.test.d.ts +1 -0
- package/dist/src/commands/opengraph/svelte.test.js +189 -0
- package/dist/src/commands/opengraph/svelte.test.js.map +1 -0
- package/dist/src/commands/opengraph/utils.d.ts +8 -0
- package/dist/src/commands/opengraph/utils.js +136 -0
- package/dist/src/commands/opengraph/utils.js.map +1 -0
- package/dist/src/commands/opengraph/utils.test.d.ts +1 -0
- package/dist/src/commands/opengraph/utils.test.js +215 -0
- package/dist/src/commands/opengraph/utils.test.js.map +1 -0
- package/dist/src/commands/sqlite/command.d.ts +8 -0
- package/dist/src/commands/sqlite/command.js +16 -0
- package/dist/src/commands/sqlite/command.js.map +1 -0
- package/dist/src/commands/sqlite/command.test.d.ts +1 -0
- package/dist/src/commands/sqlite/command.test.js +42 -0
- package/dist/src/commands/sqlite/command.test.js.map +1 -0
- package/dist/src/commands/sqlite/database.d.ts +9 -0
- package/dist/src/commands/sqlite/database.js +174 -0
- package/dist/src/commands/sqlite/database.js.map +1 -0
- package/dist/src/commands/sqlite/database.mock.d.ts +24 -0
- package/dist/src/commands/sqlite/database.mock.js +58 -0
- package/dist/src/commands/sqlite/database.mock.js.map +1 -0
- package/dist/src/commands/sqlite/database.test.d.ts +1 -0
- package/dist/src/commands/sqlite/database.test.js +211 -0
- package/dist/src/commands/sqlite/database.test.js.map +1 -0
- package/dist/src/commands/sqlite/index.d.ts +1 -0
- package/dist/src/commands/sqlite/index.js +26 -0
- package/dist/src/commands/sqlite/index.js.map +1 -0
- package/dist/src/commands/sqlite/index.test.d.ts +1 -0
- package/dist/src/commands/sqlite/index.test.js +48 -0
- package/dist/src/commands/sqlite/index.test.js.map +1 -0
- package/dist/src/commands/theme/command.d.ts +13 -0
- package/dist/src/commands/theme/command.js +21 -0
- package/dist/src/commands/theme/command.js.map +1 -0
- package/dist/src/commands/theme/command.test.d.ts +1 -0
- package/dist/src/commands/theme/command.test.js +40 -0
- package/dist/src/commands/theme/command.test.js.map +1 -0
- package/dist/src/commands/theme/index.d.ts +1 -0
- package/dist/src/commands/theme/index.js +9 -0
- package/dist/src/commands/theme/index.js.map +1 -0
- package/dist/src/commands/theme/index.test.d.ts +1 -0
- package/dist/src/commands/theme/index.test.js +46 -0
- package/dist/src/commands/theme/index.test.js.map +1 -0
- package/dist/src/commands/theme/theme.d.ts +4 -0
- package/dist/src/commands/theme/theme.js +76 -0
- package/dist/src/commands/theme/theme.js.map +1 -0
- package/dist/src/commands/theme/theme.test.d.ts +1 -0
- package/dist/src/commands/theme/theme.test.js +54 -0
- package/dist/src/commands/theme/theme.test.js.map +1 -0
- package/dist/src/lib/browser.d.ts +55 -0
- package/dist/src/lib/browser.js +52 -0
- package/dist/src/lib/browser.js.map +1 -0
- package/dist/src/lib/browser.test.d.ts +1 -0
- package/dist/src/lib/browser.test.js +67 -0
- package/dist/src/lib/browser.test.js.map +1 -0
- package/dist/src/lib/config/config.d.ts +9 -0
- package/dist/src/lib/config/config.js +56 -0
- package/dist/src/lib/config/config.js.map +1 -0
- package/dist/src/lib/config/config.test.d.ts +1 -0
- package/dist/src/lib/config/config.test.js +71 -0
- package/dist/src/lib/config/config.test.js.map +1 -0
- package/dist/src/lib/config/config.test.ts +88 -0
- package/dist/src/lib/config/config.ts +74 -0
- package/dist/src/lib/config/defaults.json +145 -0
- package/dist/src/lib/config/defaults.yaml +151 -0
- package/dist/src/lib/config/schema.d.ts +172 -0
- package/dist/src/lib/config/schema.js +8 -0
- package/dist/src/lib/config/schema.js.map +1 -0
- package/dist/src/lib/config/schema.json +663 -0
- package/dist/src/lib/config/schema.ts +294 -0
- package/dist/src/lib/config/user-error.config.yaml +2 -0
- package/dist/src/lib/config/user.config.yaml +2 -0
- package/dist/src/lib/deep-merge.d.ts +1 -0
- package/dist/src/lib/deep-merge.js +27 -0
- package/dist/src/lib/deep-merge.js.map +1 -0
- package/dist/src/lib/deep-merge.test.d.ts +1 -0
- package/dist/src/lib/deep-merge.test.js +29 -0
- package/dist/src/lib/deep-merge.test.js.map +1 -0
- package/dist/src/lib/lastRun.d.ts +4 -0
- package/dist/src/lib/lastRun.js +23 -0
- package/dist/src/lib/lastRun.js.map +1 -0
- package/dist/src/lib/lastRun.test.d.ts +1 -0
- package/dist/src/lib/lastRun.test.js +47 -0
- package/dist/src/lib/lastRun.test.js.map +1 -0
- package/dist/src/lib/vibrant.d.ts +21 -0
- package/dist/src/lib/vibrant.js +78 -0
- package/dist/src/lib/vibrant.js.map +1 -0
- package/dist/src/lib/vibrant.test.d.ts +1 -0
- package/dist/src/lib/vibrant.test.js +164 -0
- package/dist/src/lib/vibrant.test.js.map +1 -0
- package/dist/src/sdk.d.ts +4 -0
- package/dist/src/sdk.js +4 -0
- package/dist/src/sdk.js.map +1 -0
- package/dist/src/types.d.ts +2 -0
- package/dist/src/types.js +2 -0
- package/dist/src/types.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@luzzle/web.tools",
|
|
3
|
+
"version": "0.0.69",
|
|
4
|
+
"author": "eleith",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"lint": "eslint src",
|
|
7
|
+
"compile": "tsc --noEmit",
|
|
8
|
+
"build:executable": "chmod +x ./dist/src/cli.js",
|
|
9
|
+
"postbuild": "npm run build:executable",
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"test": "vitest run --silent --coverage"
|
|
12
|
+
},
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"luzzle-web-tools": "./dist/src/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/*",
|
|
21
|
+
"package.json"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://git.eleith.com/eleith/luzzle.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://git.eleith.com/eleith/luzzle.git",
|
|
28
|
+
"description": "misc scripts for working with luzzle related files and projects",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/eslint": "9.6.1",
|
|
31
|
+
"@types/node": "22.12.0",
|
|
32
|
+
"@types/yargs": "17.0.13",
|
|
33
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
34
|
+
"eslint": "9.22.0",
|
|
35
|
+
"eslint-config-prettier": "9.1.0",
|
|
36
|
+
"eslint-plugin-prettier": "5.2.1",
|
|
37
|
+
"globals": "16.0.0",
|
|
38
|
+
"prettier": "3.2.5",
|
|
39
|
+
"typescript": "5.7.3",
|
|
40
|
+
"typescript-eslint": "8.19.1",
|
|
41
|
+
"vite": "7.1.7",
|
|
42
|
+
"vitest": "3.2.4"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@luzzle/core": "0.0.32",
|
|
46
|
+
"@luzzle/web.utils": "0.0.11",
|
|
47
|
+
"lightningcss": "^1.30.2",
|
|
48
|
+
"puppeteer": "24.19.0",
|
|
49
|
+
"sharp": "0.33.5",
|
|
50
|
+
"yaml": "^2.7.0",
|
|
51
|
+
"yargs": "17.6.0"
|
|
52
|
+
},
|
|
53
|
+
"type": "module"
|
|
54
|
+
}
|