vault-link/package.json

28 lines
No EOL
832 B
JSON

{
"name": "my-workspace",
"private": true,
"workspaces": [
"sync-client",
"obsidian-plugin"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"useTabs": true,
"endOfLine": "lf"
},
"scripts": {
"build": "npm run build --workspaces",
"dev": "npm run dev --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint --fix sync-client obsidian-plugin; prettier --write \"sync-client/**/*.(ts|scss|json|html)\" \"obsidian-plugin/**/*.(ts|scss|json|html)\"",
"update": "ncu -u -ws"
},
"devDependencies": {
"npm-check-updates": "^17.1.14",
"prettier": "^3.5.1",
"eslint": "9.20.1",
"typescript-eslint": "8.24.1",
"eslint-plugin-unused-imports": "^4.1.4"
}
}