n8n/packages/extensions/insights/package.json
n8n-assistant[bot] 6eb2d75670
🚀 Release 2.16.0 (#28080)
Co-authored-by: Matsuuu <16068444+Matsuuu@users.noreply.github.com>
2026-04-07 04:26:54 +00:00

63 lines
1.7 KiB
JSON

{
"name": "@n8n/n8n-extension-insights",
"version": "0.12.0",
"type": "module",
"files": [
"dist",
"n8n.manifest.json",
"LICENSE",
"README.md"
],
"main": "./n8n.manifest.json",
"module": "./n8n.manifest.json",
"exports": {
".": {
"import": "./n8n.manifest.json",
"require": "./n8n.manifest.json"
},
"./backend": {
"types": "./dist/backend/index.d.mts",
"import": "./dist/backend/index.mjs",
"require": "./dist/backend/index.cjs"
},
"./frontend": {
"types": "./dist/frontend/index.d.mts",
"import": "./dist/frontend/index.mjs",
"require": "./dist/frontend/index.umd.cjs"
},
"./*": "./*"
},
"scripts": {
"cleanup": "rimraf dist",
"dev": "tsdown --watch",
"lint": "eslint src --quiet",
"lint:fix": "eslint src --fix",
"lint:styles": "stylelint \"src/**/*.{scss,sass,vue}\" --cache",
"lint:styles:fix": "stylelint \"src/**/*.{scss,sass,vue}\" --fix --cache",
"typecheck": "vue-tsc --noEmit",
"build:backend": "tsdown",
"build:frontend": "vite build",
"build": "pnpm cleanup && pnpm run \"/^build:.*/\"",
"preview": "vite preview"
},
"peerDependencies": {
"vue": "catalog:frontend",
"vue-router": "catalog:frontend"
},
"dependencies": {
"@n8n/extension-sdk": "workspace:*"
},
"devDependencies": {
"@n8n/stylelint-config": "workspace:*",
"@n8n/typescript-config": "workspace:*",
"@vitejs/plugin-vue": "catalog:frontend",
"@vue/tsconfig": "catalog:frontend",
"tsdown": "catalog:",
"rimraf": "catalog:",
"vite": "catalog:",
"vue": "catalog:frontend",
"vue-router": "catalog:frontend",
"vue-tsc": "catalog:frontend"
}
}