Precise DOM morphing
morphing
typescript
dom
1{
2 "name": "morphlex",
3 "version": "1.0.4",
4 "author": "Joel Drapper",
5 "license": "MIT",
6 "type": "module",
7 "description": "An optimal DOM morphing library written in TypeScript.",
8 "main": "dist/morphlex.min.js",
9 "types": "dist/morphlex.d.ts",
10 "homepage": "https://github.com/yippee-fun/morphlex",
11 "bugs": {
12 "url": "https://github.com/yippee-fun/morphlex/issues"
13 },
14 "funding": {
15 "type": "github",
16 "url": "https://github.com/sponsors/joeldrapper"
17 },
18 "scripts": {
19 "build": "bun run build.ts",
20 "lint": "bun run oxlint --type-aware",
21 "test": "vitest run",
22 "test:watch": "vitest",
23 "test:ui": "vitest --ui",
24 "test:browser": "vitest run -c vitest.config.browser.ts",
25 "test:browser:watch": "vitest -c vitest.config.browser.ts",
26 "test:all": "vitest run && vitest run -c vitest.config.browser.ts",
27 "serve": "bun --bun vite --open /benchmark/"
28 },
29 "devDependencies": {
30 "@types/bun": "^1.3.2",
31 "@typescript/native-preview": "^7.0.0-dev.20251110.1",
32 "@vitest/browser": "^4.0.8",
33 "@vitest/browser-playwright": "^4.0.8",
34 "@vitest/coverage-v8": "^4.0.8",
35 "@vitest/ui": "^4.0.8",
36 "happy-dom": "^20.0.10",
37 "jsr": "^0.13.5",
38 "oxlint": "^1.28.0",
39 "oxlint-tsgolint": "^0.4.0",
40 "prettier": "^3.6.2",
41 "typescript": "^5.9.3",
42 "vitest": "^4.0.8"
43 }
44}