-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 905 Bytes
/
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
{
"name": "stencil-click-outside",
"version": "1.7.1",
"description": "Decorator for StencilJs to run annotated method on click outside of component.",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json"
},
"dependencies": {},
"devDependencies": {
"@stencil/core": ">=1.9.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@stencil/core": ">=1.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jarrvis/stencil-click-outside.git"
},
"author": "Michał Kaliszewski",
"license": "MIT",
"bugs": {
"url": "https://github.com/jarrvis/stencil-click-outside/issues"
},
"homepage": "https://github.com/jarrvis/stencil-click-outside",
"keywords": [
"Stencil",
"decorator",
"click",
"outside"
]
}