Precise DOM morphing
morphing typescript dom
at 028251d3ac7fb1538bdec5d56d5f4e2ed5e548e2 43 lines 1.2 kB view raw
1{ 2 "name": "morphlex", 3 "version": "0.0.16", 4 "author": "Joel Drapper", 5 "license": "MIT", 6 "type": "module", 7 "description": "A tiny, optimal DOM morphing library written in TypeScript.", 8 "main": "dist/morphlex.min.js", 9 "types": "dist/morphlex.d.ts", 10 "homepage": "https://github.com/joeldrapper/morphlex", 11 "bugs": { 12 "url": "https://github.com/joeldrapper/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 "test": "vitest run", 21 "test:watch": "vitest", 22 "test:ui": "vitest --ui", 23 "test:browser": "vitest run -c vitest.config.browser.ts", 24 "test:browser:watch": "vitest -c vitest.config.browser.ts", 25 "test:all": "vitest run && vitest run -c vitest.config.browser.ts" 26 }, 27 "devDependencies": { 28 "@playwright/test": "^1.56.1", 29 "@types/bun": "^1.3.1", 30 "@vitest/browser": "^4.0.5", 31 "@vitest/browser-playwright": "^4.0.5", 32 "@vitest/coverage-v8": "^4.0.5", 33 "@vitest/ui": "^4.0.5", 34 "gzip-size-cli": "^5.1.0", 35 "happy-dom": "^20.0.10", 36 "playwright": "^1.56.1", 37 "prettier": "^3.2.5", 38 "terser": "^5.28.1", 39 "typescript": "^5.4.2", 40 "typescript-eslint": "^7.0.2", 41 "vitest": "^4.0.5" 42 } 43}