mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "@n8n/stores",
|
|
"type": "module",
|
|
"version": "2.17.0",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./*": {
|
|
"types": "./dist/*.d.mts",
|
|
"import": "./dist/*.mjs",
|
|
"require": "./dist/*.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "tsdown --watch",
|
|
"build": "tsdown",
|
|
"preview": "vite preview",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest --silent=false",
|
|
"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-workflow": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/eslint-config": "workspace:*",
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@n8n/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",
|
|
"@vueuse/core": "catalog:frontend",
|
|
"pinia": "catalog:frontend",
|
|
"vue": "catalog:frontend",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vite": "catalog:",
|
|
"vitest": "catalog:",
|
|
"vue-tsc": "catalog:frontend"
|
|
},
|
|
"peerDependencies": {
|
|
"@vueuse/core": "catalog:frontend",
|
|
"pinia": "catalog:frontend",
|
|
"vue": "catalog:frontend"
|
|
},
|
|
"license": "See LICENSE.md file in the root of the repository"
|
|
}
|