General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 3m30s

This commit is contained in:
Alex Emmet 2026-07-18 03:08:03 +02:00
commit 59419f086f
122 changed files with 10122 additions and 4965 deletions

View file

@ -1,6 +1,6 @@
{
"name": "mtp",
"version": "0.1.0",
"version": "0.2.0",
"description": "MTP TypeScript SDK",
"type": "module",
"packageManager": "pnpm@11.8.0",
@ -48,13 +48,16 @@
],
"scripts": {
"example": "pnpm install && pnpm run build:all && nix develop .#autoStart",
"build": "MTP_TYPE_MAPS=$PWD/example/type-maps.yaml RUSTFLAGS='--cfg web_sys_unstable_apis' wasm-pack build wasm --target web --out-dir pkg --release && tsc",
"build": "MTP_TYPE_MAPS=$PWD/example-type-maps.yaml RUSTFLAGS='--cfg web_sys_unstable_apis' wasm-pack build wasm --target web --out-dir pkg --release && tsc",
"build:all": "nix run .#build-all",
"dup": "jscpd --pattern '**/*.rs' --ignore 'target/**' --ignore 'wasm/pkg/**' --ignore '.git/**' --min-lines 8 --min-tokens 80 --threshold 4 --reporters console --noTips ."
"dup": "jscpd --pattern '**/*.{rs,ts}' --ignore 'target/**' --ignore 'wasm/pkg/**' --ignore '.git/**' --min-lines 8 --min-tokens 80 --threshold 4 --reporters console --noTips ."
},
"devDependencies": {
"@types/node": "^26.0.1",
"jscpd": "4.2.5",
"typescript": "^6.0.3"
},
"dependencies": {
"yaml": "^2.8.1"
}
}