@umbraco/headless-backoffice-bridge
Version:
Native javascript bridge for the Umbraco Backoffice.
147 lines (146 loc) • 3.87 kB
JSON
{
"name": "@umbraco/headless-backoffice-bridge",
"version": "0.1.1",
"description": "Native javascript bridge for the Umbraco Backoffice.",
"author": "Umbraco (https://www.umbraco.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/umbraco/Umbraco.Headless.Backoffice.Bridge.git"
},
"keywords": [
"umbraco",
"cms",
"backoffice",
"headless",
"heartcore",
"cloud"
],
"bugs": {
"url": "https://github.com/umbraco/Umbraco.Headless.Backoffice.Bridge/issues"
},
"homepage": "https://github.com/umbraco/Umbraco.Headless.Backoffice.Bridge#readme",
"license": "MIT",
"module": "./lib/index.min.js",
"browser": "./headless-backoffice-bridge.min.js",
"types": "./lib/index.d.ts",
"type": "module",
"scripts": {
"build": "wireit",
"build:rollup": "wireit",
"build:ts": "wireit",
"docs": "wireit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "npm run build --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"wireit": {
"build": {
"dependencies": [
"build:rollup",
"build:ts"
]
},
"build:rollup": {
"command": "rollup -c",
"files": [
"src/**/*.ts",
"rollup.config.json"
],
"output": [
"headless-backoffice-bridge.min.js{,.map}"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"lib"
]
},
"docs": {
"command": "typedoc --options .typedoc.cjs",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
".typedoc.cjs",
"README.md"
],
"output": [
"docs"
]
}
},
"files": [
"/lib/",
"headless-backoffice-bridge.min.js{,.map}"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./types.js": {
"types": "./lib/types.d.ts",
"default": "./lib/types.js"
},
"./base/index.js": {
"types": "./lib/base/index.d.ts",
"default": "./lib/base/index.js"
},
"./base/angular/index.js": {
"types": "./lib/base/angular/index.d.ts",
"default": "./lib/base/angular/index.js"
},
"./components/index.js": {
"types": "./lib/components/index.d.ts",
"default": "./lib/components/index.js"
},
"./components/image/index.js": {
"types": "./lib/components/image/index.d.ts",
"default": "./lib/components/image/index.js"
},
"./components/tinymce/index.js": {
"types": "./lib/components/tinymce/index.d.ts",
"default": "./lib/components/tinymce/index.js"
},
"./pickers/index.js": {
"types": "./lib/pickers/index.d.ts",
"default": "./lib/pickers/index.js"
},
"./pickers/content/index.js": {
"types": "./lib/pickers/content/index.d.ts",
"default": "./lib/pickers/content/index.js"
},
"./pickers/media/index.js": {
"types": "./lib/pickers/media/index.d.ts",
"default": "./lib/pickers/media/index.js"
}
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/angular": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.2",
"eslint-plugin-promise": "^4.3.1",
"rollup": "^2.75.6",
"rollup-plugin-summary": "^1.4.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typedoc": "^0.23.2",
"typedoc-plugin-markdown": "^3.13.1",
"typescript": "^4.7.3",
"wireit": "^0.7.0"
},
"dependencies": {
"lit": "^2.2.5"
}
}