forked from WebReflection/lighterhtml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.77 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
{
"name": "signal-html",
"version": "0.1.1-alpha.1",
"description": "lighterhtml, but reactive with signal",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist/",
"index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"build": "vite build",
"vitest": "vitest",
"preview:publish": "npm pack --dry-run",
"print:size": "echo 'File sizes in dist directory:' && ls -lh dist/ 2>/dev/null || echo 'dist directory may not exist yet. Run build first.'"
},
"keywords": [
"html",
"svg",
"render",
"hyper",
"lit",
"alternative"
],
"author": "Ray-D-Song",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"ascjs": "^4.0.1",
"babel-plugin-remove-ungap": "^1.2.0",
"drop-babel-typeof": "^1.0.3",
"jsdom": "^26.1.0",
"rollup": "^2.26.5",
"rollup-plugin-terser": "^7.0.0",
"terser": "^5.2.1",
"vite": "^6.3.5",
"vitest": "^3.2.3"
},
"dependencies": {
"@ungap/create-content": "^0.2.0",
"@ungap/weakmap": "^0.2.1",
"alien-signals": "^2.0.5",
"domsanitizer": "^0.2.3",
"domtagger": "^0.7.1",
"hyperhtml-style": "^0.1.2",
"udomdiff": "^1.1.0",
"uhandlers": "^0.4.2",
"umap": "^1.0.2",
"uwire": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ray-D-Song/signal-html.git"
},
"greenkeeper": {
"ignore": [
"rollup",
"rollup-plugin-babel",
"rollup-plugin-node-resolve"
]
},
"bugs": {
"url": "https://github.com/Ray-D-Song/signal-html/issues"
},
"homepage": "https://github.com/Ray-D-Song/signal-html#readme"
}