This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "@lion/select-rich",
|
|
"version": "0.21.28",
|
|
"description": "Provides a select with options that can contain html",
|
|
"license": "MIT",
|
|
"author": "ing-bank",
|
|
"homepage": "https://github.com/ing-bank/lion/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ing-bank/lion.git",
|
|
"directory": "packages/select-rich"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"docs",
|
|
"src",
|
|
"test",
|
|
"test-helpers",
|
|
"translations",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group select-rich",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group select-rich",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group select-rich",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group select-rich"
|
|
},
|
|
"sideEffects": [
|
|
"lion-select-invoker.js",
|
|
"lion-select-rich.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/button": "0.8.11",
|
|
"@lion/core": "0.13.8",
|
|
"@lion/form-core": "0.7.3",
|
|
"@lion/listbox": "0.4.3",
|
|
"@lion/overlays": "0.23.4"
|
|
},
|
|
"keywords": [
|
|
"field",
|
|
"form",
|
|
"lion",
|
|
"listbox",
|
|
"option",
|
|
"select",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./lion-option": "./lion-option.js",
|
|
"./lion-options": "./lion-options.js",
|
|
"./lion-select-invoker": "./lion-select-invoker.js",
|
|
"./lion-select-rich": "./lion-select-rich.js"
|
|
}
|
|
}
|