This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "templize",
"version": "2.4.4",
"description": "Reactive template parts for any HTML elements",
"bugs": {
"url": "https://github.com/spectjs/templize/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spectjs/templize.git"
},
"license": "MIT",
"author": "Dmitry Iv.",
"keywords": [
"template-parts",
"template parts",
"template-instantiation",
"template instance",
"template engine",
"template processor",
"dom parts",
"dom template"
],
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"browser": "templize.js",
"files": [
"templize.js",
"templize.min.js"
],
"scripts": {
"test": "node --expose-gc --allow-natives-syntax -r ./test/register.cjs test/index.js",
"build": "rollup ./templize.js -p @rollup/plugin-node-resolve --file templize.min.js --format esm",
"min": "terser templize.min.js -o templize.min.js --module -c passes=3 -m"
},
"devDependencies": {
"@preact/signals": "^1.1.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"es-module-shims": "^1.4.1",
"hyperf": "^1.3.0",
"jsdom": "^19.0.0",
"rollup": "^2.63.0",
"spect": "^24.1.1",
"terser": "^5.10.0",
"tst": "^7.1.0",
"value-ref": "^1.4.3",
"wait-please": "^3.1.0"
},
"dependencies": {
"element-props": "^2.0.2",
"sube": "^2.2.1",
"subscript": "^7.3.1",
"swapdom": "^1.1.1",
"template-parts": "^1.0.4",
"templize": "^2.4.3"
}
}