|
1 | 1 | { |
2 | 2 | "name": "dom-renderer", |
3 | | - "version": "2.3.1", |
| 3 | + "version": "2.4.0", |
4 | 4 | "license": "LGPL-3.0-or-later", |
5 | 5 | |
6 | 6 | "description": "A light-weight DOM Renderer supports Web components standard & TypeScript language", |
|
25 | 25 | "main": "dist/index.js", |
26 | 26 | "dependencies": { |
27 | 27 | "declarative-shadow-dom-polyfill": "^0.4.0", |
28 | | - "tslib": "^2.8.0", |
| 28 | + "tslib": "^2.8.1", |
29 | 29 | "web-streams-polyfill": "^4.0.0", |
30 | | - "web-utility": "^4.4.1" |
| 30 | + "web-utility": "^4.4.2" |
31 | 31 | }, |
32 | 32 | "peerDependencies": { |
33 | 33 | "happy-dom": "^14" |
34 | 34 | }, |
35 | 35 | "devDependencies": { |
36 | 36 | "@happy-dom/jest-environment": "^14.12.3", |
37 | 37 | "@types/jest": "^29.5.14", |
38 | | - "@types/node": "^20.17.1", |
| 38 | + "@types/node": "^20.17.6", |
39 | 39 | "happy-dom": "^14.12.3", |
40 | 40 | "husky": "^9.1.6", |
41 | 41 | "jest": "^29.7.0", |
42 | 42 | "lint-staged": "^15.2.10", |
43 | 43 | "open-cli": "^8.0.0", |
44 | 44 | "prettier": "^3.3.3", |
45 | 45 | "ts-jest": "^29.2.5", |
46 | | - "typedoc": "^0.26.10", |
47 | | - "typedoc-plugin-mdn-links": "^3.3.4", |
| 46 | + "typedoc": "^0.26.11", |
| 47 | + "typedoc-plugin-mdn-links": "^3.3.6", |
48 | 48 | "typescript": "~5.6.3" |
49 | 49 | }, |
50 | 50 | "prettier": { |
51 | 51 | "singleQuote": true, |
52 | 52 | "trailingComma": "none", |
53 | 53 | "arrowParens": "avoid", |
54 | | - "tabWidth": 4 |
| 54 | + "tabWidth": 4, |
| 55 | + "printWidth": 100 |
55 | 56 | }, |
56 | 57 | "lint-staged": { |
57 | 58 | "*.{md,json,yml,ts}": "prettier --write" |
58 | 59 | }, |
59 | 60 | "jest": { |
60 | 61 | "preset": "ts-jest", |
61 | | - "testEnvironment": "@happy-dom/jest-environment" |
| 62 | + "testEnvironment": "@happy-dom/jest-environment", |
| 63 | + "transform": { |
| 64 | + "\\.tsx?$": [ |
| 65 | + "ts-jest", |
| 66 | + { |
| 67 | + "tsconfig": "test/tsconfig.json" |
| 68 | + } |
| 69 | + ] |
| 70 | + } |
62 | 71 | }, |
63 | 72 | "browserslist": "> 0.5%, last 2 versions, not dead, IE 11", |
64 | 73 | "scripts": { |
|
0 commit comments