Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria

Vanha frontend siirretty temp/. Uusi rakenne:
- StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro
- global.css erillinen
- Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava)
- Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md
- Ei tokenisointia eikä koodilaboratoriota

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jaakko Vanhala
2026-04-09 20:17:39 +03:00
parent e3fdb91ac5
commit a8c4af0975
9617 changed files with 996171 additions and 5349 deletions

47
network-poc/frontend/node_modules/destr/package.json generated vendored Normal file
View File

@@ -0,0 +1,47 @@
{
"name": "destr",
"version": "2.0.5",
"description": "A faster, secure and convenient alternative for JSON.parse",
"repository": "unjs/destr",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./lib/index.cjs"
}
},
"main": "./lib/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"bench:bun": "pnpm build && bun --bun ./test/bench.mjs",
"bench:node": "pnpm build && node ./test/bench.mjs",
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . && prettier -c src test",
"lint:fix": "eslint . --fix && prettier -w src test",
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
"test": "pnpm lint && vitest run --coverage"
},
"devDependencies": {
"@hapi/bourne": "^3.0.0",
"@vitest/coverage-v8": "^3.1.1",
"changelogen": "^0.6.1",
"eslint": "^9.23.0",
"eslint-config-unjs": "^0.4.2",
"mitata": "^1.0.34",
"prettier": "^3.5.3",
"secure-json-parse": "^4.0.0",
"typescript": "^5.8.2",
"unbuild": "~3.4",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@10.7.1"
}