-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "super-template",
"version": "0.1.1",
"description": "Build-less template inheritance in the browser. Handy for example or demo pages.",
"type": "module",
"main": "dist/super-template.js",
"files": [
"src",
"dist"
],
"repository": "luwes/super-template",
"author": "Wesley Luyten <[email protected]> (https://wesleyluyten.com)",
"license": "MIT",
"homepage": "https://github.com/luwes/super-template#readme",
"bugs": {
"url": "https://github.com/luwes/super-template/issues"
},
"scripts": {
"dev": "wet serve --cors --redirect :examples/ & esbuild src/super-template.js --outdir=dist --bundle --minify-syntax --tree-shaking=true --watch",
"build": "esbuild src/super-template.js --outdir=dist --bundle --minify-syntax --tree-shaking=true",
"prepublishOnly": "npm run build"
},
"dependencies": {
"template-extensions": "0.7.3"
},
"devDependencies": {
"esbuild": "^0.17.10",
"wet-run": "^0.0.7"
},
"keywords": [
"template",
"template inheritance",
"web components"
]
}