chore(dx/server): get server to run up to missing public server

This commit is contained in:
Elian Doran 2025-08-31 16:58:57 +03:00
parent 4739e2e3b2
commit 63c0841c32
No known key found for this signature in database
4 changed files with 6 additions and 48 deletions

View File

@ -360,17 +360,8 @@
} }
} }
}, },
"exports": { "scripts": {
"./package.json": "./package.json", "dev": "cross-env TRILIUM_ENV=dev TRILIUM_DATA_DIR=data TRILIUM_RESOURCE_DIR=src tsx watch ./src/main.ts"
"./src/*": "./src/*",
".": {
"development": "./src/main.ts",
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"default": "./dist/main.js"
}
}, },
"types": "./dist/main.d.ts", "main": "./src/main.ts"
"module": "./dist/main.js",
"main": "./dist/main.js"
} }

View File

@ -4,18 +4,7 @@
"description": "Shared library between the clients (e.g. browser, Electron) and the server, mostly for type definitions and utility methods.", "description": "Shared library between the clients (e.g. browser, Electron) and the server, mostly for type definitions and utility methods.",
"private": true, "private": true,
"type": "module", "type": "module",
"main": "./dist/main.js", "main": "./src/index.ts",
"module": "./dist/main.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/main.js",
"default": "./dist/main.js"
}
},
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",
"author": { "author": {
"name": "Trilium Notes Team", "name": "Trilium Notes Team",

View File

@ -5,18 +5,7 @@
"version": "1.1.0", "version": "1.1.0",
"type": "module", "type": "module",
"private": true, "private": true,
"main": "./dist/main.js", "main": "./src/index.ts",
"module": "./dist/main.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/main.js",
"default": "./dist/main.js"
}
},
"keywords": [ "keywords": [
"partial-content", "partial-content",
"206", "206",

View File

@ -5,18 +5,7 @@
"author": "Dom Christie", "author": "Dom Christie",
"private": true, "private": true,
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./src/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"gitHead": "05a29b450962bf05a8642bbd39446a1f679a96ba", "gitHead": "05a29b450962bf05a8642bbd39446a1f679a96ba",
"license": "MIT", "license": "MIT",
"repository": { "repository": {