mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
50 lines
1.6 KiB
JSON
50 lines
1.6 KiB
JSON
{
|
|
"name": "@open-wc/scoped-elements",
|
|
"version": "1.3.3",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Allows to auto define custom elements scoping them",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/open-wc/open-wc.git",
|
|
"directory": "packages/scoped-elements"
|
|
},
|
|
"author": "open-wc",
|
|
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/scoped-elements",
|
|
"module": "index.js",
|
|
"scripts": {
|
|
"demo-build:before-nesting": "rollup -c demo/before-nesting/rollup.config.js",
|
|
"demo-build:no-scope": "rollup -c demo/no-scope/rollup.config.js",
|
|
"demo-build:with-scope": "rollup -c demo/with-scope/rollup.config.js",
|
|
"prepublishOnly": "../../scripts/insert-header.js",
|
|
"site:build": "run-p demo-build:*",
|
|
"start:before-nesting": "es-dev-server -c demo/before-nesting/server.js",
|
|
"start:no-scope": "es-dev-server -c demo/no-scope/server.js",
|
|
"start:with-scope": "es-dev-server -c demo/with-scope/server.js",
|
|
"test": "cd ../../ && yarn test:browser --grep \"packages/scoped-elements/test/*.test.js\"",
|
|
"test:watch": "cd ../../ && yarn test:browser:watch --grep \"packages/scoped-elements/test/*.test.js\"",
|
|
"types:copy": "copyfiles \"./src/**/*.d.ts\" \"./*.d.ts\" types"
|
|
},
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"src",
|
|
"types"
|
|
],
|
|
"keywords": [
|
|
"lit-html",
|
|
"lit-element",
|
|
"web components",
|
|
"utils",
|
|
"helpers"
|
|
],
|
|
"dependencies": {
|
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
"lit-html": "^1.0.0"
|
|
},
|
|
"types": "types/index.d.ts",
|
|
"sideEffects": false
|
|
}
|