-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "updatable-custom-elements",
"version": "0.1.2",
"description": "partial \"hot module replacement\" for \"Custom Elements\"",
"type": "module",
"main": "./dist/updatable-custom-elements.js",
"module": "./dist/updatable-custom-elements.esm.js",
"svelte": "./dist/updatable-custom-elements.esm.js",
"types": "./dist/updatable-custom-elements.d.ts",
"exports": {
".": {
"require": "./dist/updatable-custom-elements.js",
"import": "./dist/updatable-custom-elements.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && tsc && mv src/*.d.ts dist && rm src/*.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/updatable-custom-elements.git"
},
"keywords": [
"javascript",
"typescript",
"hot-reload",
"hot-reloading",
"hot-module-reloading",
"hot-module-replacement",
"custom-elements"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/updatable-custom-elements/issues"
},
"homepage": "https://github.com/rozek/updatable-custom-elements#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.3"
}
}