-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.44 KB
/
package.json
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
{
"name": "diff-dom-streaming",
"version": "0.6.4",
"bugs": "https://github.com/aralroca/diff-dom-streaming/issues",
"description": "Diff DOM algorithm with streaming. Gets all modifications, insertions and removals between a DOM fragment and a stream HTML reader.",
"keywords": [
"brisa",
"typescript",
"streaming",
"stream",
"html",
"diff",
"dom",
"javascript"
],
"bundlewatch": {
"files": [
{
"path": "./build/index.js",
"maxSize": "1.5 kB"
}
]
},
"module": "./build/index.js",
"main": "./build/index.js",
"types": "./index.d.ts",
"type": "module",
"license": "MIT",
"author": {
"name": "Aral Roca Gòmez",
"email": "[email protected]"
},
"files": [
"build",
"index.d.ts"
],
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/aralroca/diff-dom-streaming.git"
},
"scripts": {
"build": "bun build --target=browser --minify --outdir=build src/index.ts",
"test": "bun test --timeout=30000",
"bundlewatch": "bundlewatch",
"example:boxes": "bunx serve ./examples/boxes",
"example:spa-like": "bun run ./examples/spa-like/index.ts"
},
"devDependencies": {
"typescript": "5.4.5",
"@types/bun": "1.1.0",
"bundlewatch": "0.3.3",
"playwright": "1.43.1"
}
}