-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "template-element-loader",
"version": "1.0.1",
"description": "A Webpack loader that serves your html contents into actual <template> elements",
"files": [
"dist"
],
"main": "dist/template-element-loader.umd.js",
"module": "dist/template-element-loader.es.js",
"exports": {
".": {
"import": "./dist/template-element-loader.es.js",
"require": "./dist/template-element-loader.umd.js"
}
},
"scripts": {
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccjmne/template-element-loader.git"
},
"keywords": [
"webpack",
"loader",
"html",
"template",
"element",
"template-element",
"custom-element"
],
"author": "Eric NICOLAS <ccjmne@gmail.com> (ccjmne)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccjmne/template-element-loader/issues"
},
"homepage": "https://github.com/ccjmne/template-element-loader#readme",
"dependencies": {
"html-minifier-terser": "^7.0.0-beta.0"
},
"devDependencies": {
"@types/html-minifier-terser": "^6.1.0",
"@types/node": "^18.0.3",
"@types/webpack": "^5.28.0",
"vite": "^2.9.13"
}
}