mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
"name": "@n8n/composables",
|
|
"type": "module",
|
|
"version": "1.1.0",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"./*": {
|
|
"types": "./dist/*.d.ts",
|
|
"import": "./dist/*.js",
|
|
"require": "./dist/*.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "pnpm run typecheck && tsup",
|
|
"preview": "vite preview",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest --silent=false",
|
|
"lint": "eslint src --ext .js,.ts,.vue --quiet",
|
|
"lintfix": "eslint src --ext .js,.ts,.vue --fix",
|
|
"format": "biome format --write . && prettier --write . --ignore-path ../../../../.prettierignore",
|
|
"format:check": "biome ci . && prettier --check . --ignore-path ../../../../.prettierignore"
|
|
},
|
|
"dependencies": {
|
|
"vue": "catalog:frontend"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/frontend-eslint-config": "workspace:*",
|
|
"@n8n/frontend-typescript-config": "workspace:*",
|
|
"@n8n/frontend-vitest-config": "workspace:*",
|
|
"@testing-library/jest-dom": "catalog:frontend",
|
|
"@testing-library/user-event": "catalog:frontend",
|
|
"@testing-library/vue": "catalog:frontend",
|
|
"@vitejs/plugin-vue": "catalog:frontend",
|
|
"@vue/tsconfig": "catalog:frontend",
|
|
"tsup": "catalog:frontend",
|
|
"typescript": "catalog:frontend",
|
|
"vite": "catalog:frontend",
|
|
"vite-plugin-dts": "catalog:frontend",
|
|
"vitest": "catalog:frontend",
|
|
"vue-tsc": "catalog:frontend"
|
|
},
|
|
"license": "See LICENSE.md file in the root of the repository"
|
|
}
|