mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 09:05:37 +08:00 
			
		
		
		
	chore(monorepo/edit-docs): fix module issue & add entry point
This commit is contained in:
		
							parent
							
								
									e49d248bf5
								
							
						
					
					
						commit
						a068f75960
					
				
					 4 changed files with 85 additions and 53 deletions
				
			
		| 
						 | 
				
			
			@ -17,11 +17,7 @@
 | 
			
		|||
    "electron:start-prod-nix": "electron-rebuild --version 33.3.1 && npm run build:prepare-dist && cross-env TRILIUM_DATA_DIR=./data TRILIUM_ENV=dev nix-shell -p electron_33 --run \"electron ./dist/electron-main.js --inspect=5858 .\"",
 | 
			
		||||
    "electron:start-prod-nix-no-dir": "electron-rebuild --version 33.3.1 && npm run build:prepare-dist && cross-env TRILIUM_ENV=dev nix-shell -p electron_33 --run \"electron ./dist/electron-main.js --inspect=5858 .\"",
 | 
			
		||||
    "electron:qstart": "npm run electron:switch && npm run electron:start",
 | 
			
		||||
    "electron:switch": "electron-rebuild",
 | 
			
		||||
    "docs:edit": "cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-docs TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store TRILIUM_PORT=37741 electron ./electron-docs-main.ts .",
 | 
			
		||||
    "docs:edit-nix": "electron-rebuild --version 33.3.1 && cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-docs TRILIUM_PORT=37741 TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store nix-shell -p electron_33 --run \"electron ./electron-docs-main.ts .\"",
 | 
			
		||||
    "demo:edit": "cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-demo TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store TRILIUM_PORT=37741 electron ./electron-edit-demo.ts .",
 | 
			
		||||
    "demo:edit-nix": "electron-rebuild --version 33.3.1 && cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-docs TRILIUM_PORT=37741 TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store nix-shell -p electron_33 --run \"electron ./electron-edit-demo.ts .\"",\    
 | 
			
		||||
    "electron:switch": "electron-rebuild",    
 | 
			
		||||
    "docs:build": "typedoc",        
 | 
			
		||||
    "test": "npm run client:test && npm run server:test",    
 | 
			
		||||
    "client:test": "cross-env TRILIUM_ENV=dev TRILIUM_DATA_DIR=./integration-tests/db TRILIUM_INTEGRATION_TEST=memory vitest --root src/public/app",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,8 +3,12 @@
 | 
			
		|||
  "version": "1.0.0",
 | 
			
		||||
  "description": "Desktop version of Trilium which imports the demo database (presented to new users at start-up) or the user guide and other documentation and saves the modifications for committing.",
 | 
			
		||||
  "main": "index.js",
 | 
			
		||||
  "type": "module",
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "test": "echo \"Error: no test specified\" && exit 1"
 | 
			
		||||
    "docs:edit": "cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-docs TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store TRILIUM_PORT=37741 electron ./src/electron-docs-main.ts .",
 | 
			
		||||
    "docs:edit-nix": "electron-rebuild --version 33.3.1 && cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-docs TRILIUM_PORT=37741 TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store nix-shell -p electron_33 --run \"electron ./src/electron-docs-main.ts .\"",
 | 
			
		||||
    "demo:edit": "cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-demo TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store TRILIUM_PORT=37741 electron ./src/electron-edit-demo.ts .",
 | 
			
		||||
    "demo:edit-nix": "electron-rebuild --version 33.3.1 && cross-env NODE_OPTIONS=\"--import tsx\" TRILIUM_DATA_DIR=./data-docs TRILIUM_PORT=37741 TRILIUM_ENV=dev TRILIUM_INTEGRATION_TEST=memory-no-store nix-shell -p electron_33 --run \"electron ./src/electron-edit-demo.ts .\""
 | 
			
		||||
  },
 | 
			
		||||
  "repository": {
 | 
			
		||||
    "type": "git",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										18
									
								
								apps/edit-docs/tsconfig.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								apps/edit-docs/tsconfig.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
{
 | 
			
		||||
    "compilerOptions": {
 | 
			
		||||
        "module": "NodeNext",
 | 
			
		||||
        "declaration": false,
 | 
			
		||||
        "sourceMap": true,
 | 
			
		||||
        "outDir": "./build/src",
 | 
			
		||||
        "strict": true,
 | 
			
		||||
        "noImplicitAny": true,
 | 
			
		||||
        "resolveJsonModule": true,
 | 
			
		||||
        "lib": ["ES2023"],
 | 
			
		||||
        "downlevelIteration": true,
 | 
			
		||||
        "skipLibCheck": true,
 | 
			
		||||
        "esModuleInterop": true,
 | 
			
		||||
        "verbatimModuleSyntax": true,
 | 
			
		||||
        "allowJs": true
 | 
			
		||||
    },
 | 
			
		||||
    "include": [ "./src/**/*.ts" ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										108
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										108
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							| 
						 | 
				
			
			@ -220,7 +220,46 @@
 | 
			
		|||
                "tsx": "4.19.3"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "apps/dump-db": {
 | 
			
		||||
            "version": "1.0.0",
 | 
			
		||||
            "license": "ISC",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "better-sqlite3": "^11.1.2",
 | 
			
		||||
                "mime-types": "^3.0.0",
 | 
			
		||||
                "sanitize-filename": "^1.6.3",
 | 
			
		||||
                "tsx": "^4.19.3",
 | 
			
		||||
                "yargs": "^17.3.1"
 | 
			
		||||
            },
 | 
			
		||||
            "devDependencies": {
 | 
			
		||||
                "@types/better-sqlite3": "^7.6.11",
 | 
			
		||||
                "@types/mime-types": "^2.1.4",
 | 
			
		||||
                "@types/yargs": "^17.0.33"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "apps/dump-db/node_modules/mime-types": {
 | 
			
		||||
            "version": "3.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==",
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "mime-db": "^1.54.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">= 0.6"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "apps/edit-demo": {
 | 
			
		||||
            "name": "@triliumnext/edit-demo",
 | 
			
		||||
            "version": "1.0.0",
 | 
			
		||||
            "extraneous": true,
 | 
			
		||||
            "license": "AGPL-3.0-only",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@triliumnext/client": "0.0.1",
 | 
			
		||||
                "@triliumnext/electron": "0.0.1",
 | 
			
		||||
                "@triliumnext/server": "0.0.1"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "apps/edit-docs": {
 | 
			
		||||
            "name": "@triliumnext/edit-demo",
 | 
			
		||||
            "version": "1.0.0",
 | 
			
		||||
            "license": "AGPL-3.0-only",
 | 
			
		||||
| 
						 | 
				
			
			@ -1521,7 +1560,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "ppc64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1538,7 +1576,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1555,7 +1592,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1572,7 +1608,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1589,7 +1624,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1606,7 +1640,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1623,7 +1656,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1640,7 +1672,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1657,7 +1688,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1674,7 +1704,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1691,7 +1720,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "ia32"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1708,7 +1736,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "loong64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1725,7 +1752,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "mips64el"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1742,7 +1768,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "ppc64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1759,7 +1784,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "riscv64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1776,7 +1800,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "s390x"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1793,7 +1816,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1810,7 +1832,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1827,7 +1848,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1844,7 +1864,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1861,7 +1880,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1878,7 +1896,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1895,7 +1912,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "arm64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1912,7 +1928,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "ia32"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -1929,7 +1944,6 @@
 | 
			
		|||
            "cpu": [
 | 
			
		||||
                "x64"
 | 
			
		||||
            ],
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
            "os": [
 | 
			
		||||
| 
						 | 
				
			
			@ -4531,7 +4545,7 @@
 | 
			
		|||
            "link": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@triliumnext/edit-demo": {
 | 
			
		||||
            "resolved": "apps/edit-demo",
 | 
			
		||||
            "resolved": "apps/edit-docs",
 | 
			
		||||
            "link": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@triliumnext/electron": {
 | 
			
		||||
| 
						 | 
				
			
			@ -5231,6 +5245,23 @@
 | 
			
		|||
                "@types/node": "*"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@types/yargs": {
 | 
			
		||||
            "version": "17.0.33",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz",
 | 
			
		||||
            "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@types/yargs-parser": "*"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@types/yargs-parser": {
 | 
			
		||||
            "version": "21.0.3",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
 | 
			
		||||
            "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT"
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@types/yauzl": {
 | 
			
		||||
            "version": "2.10.3",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -8022,7 +8053,6 @@
 | 
			
		|||
            "version": "8.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "ISC",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "string-width": "^4.2.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -8037,7 +8067,6 @@
 | 
			
		|||
            "version": "5.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=8"
 | 
			
		||||
| 
						 | 
				
			
			@ -8047,7 +8076,6 @@
 | 
			
		|||
            "version": "4.3.0",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
 | 
			
		||||
            "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "color-convert": "^2.0.1"
 | 
			
		||||
| 
						 | 
				
			
			@ -8063,14 +8091,12 @@
 | 
			
		|||
            "version": "8.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT"
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/cliui/node_modules/string-width": {
 | 
			
		||||
            "version": "4.2.3",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
 | 
			
		||||
            "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "emoji-regex": "^8.0.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -8085,7 +8111,6 @@
 | 
			
		|||
            "version": "6.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "ansi-regex": "^5.0.1"
 | 
			
		||||
| 
						 | 
				
			
			@ -8098,7 +8123,6 @@
 | 
			
		|||
            "version": "7.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "ansi-styles": "^4.0.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -10085,6 +10109,10 @@
 | 
			
		|||
                "tn1150": "^0.1.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/dump-db": {
 | 
			
		||||
            "resolved": "apps/dump-db",
 | 
			
		||||
            "link": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/dunder-proto": {
 | 
			
		||||
            "version": "1.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -11345,7 +11373,6 @@
 | 
			
		|||
            "version": "0.25.2",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.2.tgz",
 | 
			
		||||
            "integrity": "sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "hasInstallScript": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "bin": {
 | 
			
		||||
| 
						 | 
				
			
			@ -13246,7 +13273,6 @@
 | 
			
		|||
            "version": "2.3.3",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
 | 
			
		||||
            "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "hasInstallScript": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "optional": true,
 | 
			
		||||
| 
						 | 
				
			
			@ -13372,7 +13398,6 @@
 | 
			
		|||
            "version": "2.0.5",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
 | 
			
		||||
            "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "ISC",
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "6.* || 8.* || >= 10.*"
 | 
			
		||||
| 
						 | 
				
			
			@ -13528,7 +13553,6 @@
 | 
			
		|||
            "version": "4.10.0",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz",
 | 
			
		||||
            "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "resolve-pkg-maps": "^1.0.0"
 | 
			
		||||
| 
						 | 
				
			
			@ -20189,7 +20213,6 @@
 | 
			
		|||
            "version": "2.1.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
 | 
			
		||||
            "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=0.10.0"
 | 
			
		||||
| 
						 | 
				
			
			@ -20299,7 +20322,6 @@
 | 
			
		|||
            "version": "1.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "funding": {
 | 
			
		||||
                "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
 | 
			
		||||
| 
						 | 
				
			
			@ -23226,7 +23248,6 @@
 | 
			
		|||
            "version": "4.19.3",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz",
 | 
			
		||||
            "integrity": "sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "esbuild": "~0.25.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -25274,7 +25295,6 @@
 | 
			
		|||
            "version": "5.0.8",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
 | 
			
		||||
            "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "ISC",
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=10"
 | 
			
		||||
| 
						 | 
				
			
			@ -25299,7 +25319,6 @@
 | 
			
		|||
            "version": "17.7.2",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
 | 
			
		||||
            "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "cliui": "^8.0.1",
 | 
			
		||||
| 
						 | 
				
			
			@ -25318,7 +25337,6 @@
 | 
			
		|||
            "version": "21.1.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
 | 
			
		||||
            "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "ISC",
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=12"
 | 
			
		||||
| 
						 | 
				
			
			@ -25328,7 +25346,6 @@
 | 
			
		|||
            "version": "5.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=8"
 | 
			
		||||
| 
						 | 
				
			
			@ -25338,14 +25355,12 @@
 | 
			
		|||
            "version": "8.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT"
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/yargs/node_modules/string-width": {
 | 
			
		||||
            "version": "4.2.3",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
 | 
			
		||||
            "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "emoji-regex": "^8.0.0",
 | 
			
		||||
| 
						 | 
				
			
			@ -25360,7 +25375,6 @@
 | 
			
		|||
            "version": "6.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "license": "MIT",
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "ansi-regex": "^5.0.1"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue