add package and rollup to libs

This commit is contained in:
Jacob Overgaard
2023-01-23 14:36:50 +01:00
parent 65a8015c10
commit 4f53ab43ea
9 changed files with 91 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
{
"name": "@umbraco-cms/context-api",
"version": "0.0.0",
"description": "",
"module": "index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"lit": "^2.6.1",
"@umbraco-cms/element": "^0.0.0"
},
"author": "Umbraco HQ",
"license": "MIT"
}

View File

@@ -0,0 +1,4 @@
import config from '../../utils/rollup.config.js';
export default {
...config,
};