stencil-wormhole
Version:
Pass props down component trees easily via wormholes.
36 lines (35 loc) • 951 B
JSON
{
"name": "stencil-wormhole",
"version": "3.4.1",
"license": "MIT",
"author": "Rahim Alwer <rahim_alwer@hotmail.com>",
"description": "Pass props down component trees easily via wormholes.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"homepage": "https://github.com/mihar-22/stencil-wormhole",
"bugs": {
"url": "https://github.com/mihar-22/stencil-wormhole"
},
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm",
"release": "semantic-release"
},
"devDependencies": {
"@stencil/core": "2.4.0",
"semantic-release": "^17.1.1",
"typescript": "^3.9.6"
},
"keywords": [
"stencil",
"context",
"tunnel",
"universe",
"wormhole"
]
}