mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 23:57:19 +00:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@n8n/crdt",
|
|
"version": "0.2.0",
|
|
"description": "CRDT abstraction layer for n8n collaborative editing",
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome ci .",
|
|
"lint": "eslint . --quiet",
|
|
"lint:fix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run",
|
|
"test:dev": "vitest --silent=false"
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"y-protocols": "^1.0.7",
|
|
"yjs": "^13.6.20"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@n8n/vitest-config": "workspace:*",
|
|
"vitest": "catalog:",
|
|
"vitest-websocket-mock": "^0.5.0"
|
|
}
|
|
}
|