mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-31 04:55:25 +02:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"type": "module",
|
|
"name": "@n8n/frontend-module-sdk",
|
|
"version": "0.1.0",
|
|
"main": "src/index.ts",
|
|
"import": "src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf .turbo",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest",
|
|
"lint": "eslint src --quiet",
|
|
"lint:fix": "eslint src --fix",
|
|
"format": "biome format --write . && prettier --write . --ignore-path ../../../../.prettierignore",
|
|
"format:check": "biome ci . && prettier --check . --ignore-path ../../../../.prettierignore"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/design-system": "workspace:*",
|
|
"vue": "catalog:frontend",
|
|
"vue-router": "catalog:frontend"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/eslint-config": "workspace:*",
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@n8n/vitest-config": "workspace:*",
|
|
"typescript": "catalog:",
|
|
"unplugin-icons": "catalog:frontend",
|
|
"vite": "catalog:",
|
|
"vitest": "catalog:",
|
|
"vue-tsc": "catalog:frontend"
|
|
},
|
|
"license": "LicenseRef-n8n-sustainable-use"
|
|
}
|