-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "shadow-html-renderer",
"version": "3.1.0",
"description": "A powerful and flexible framework-agnostic library for rendering HTML content into Shadow DOM with style isolation and full script execution support",
"keywords": [
"html",
"renderer",
"shadow-dom",
"html-rendering",
"typescript",
"vanilla-js",
"framework-agnostic",
"script-execution",
"style-isolation"
],
"homepage": "https://github.com/ddavid93/shadow-html-renderer#readme",
"bugs": {
"url": "https://github.com/ddavid93/shadow-html-renderer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddavid93/shadow-html-renderer.git"
},
"license": "MIT",
"author": "Daniel David Díaz González <ddavid930826@gmail.com>",
"type": "module",
"module": "./dist/shadow-html-renderer.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/shadow-html-renderer.js"
}
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"format": "prettier --write .",
"install-packages": "pnpm install",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"test:unit": "vitest",
"type-check": "tsc --build --force",
"update-packages": "pnpm upgrade --latest"
},
"devDependencies": {
"@prettier/plugin-oxc": "0.0.5",
"@tsconfig/node22": "22.0.5",
"@types/jsdom": "27.0.0",
"@types/node": "24.10.1",
"jiti": "2.6.1",
"jsdom": "27.2.0",
"npm-run-all2": "8.0.4",
"oxlint": "1.30.0",
"prettier": "3.6.2",
"terser": "^5.44.1",
"typescript": "5.8.2",
"vite": "npm:rolldown-vite@7.2.7",
"vite-plugin-dts": "4.5.4",
"vitest": "4.0.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"packageManager": "pnpm@10.23.0"
}