forked from FreezingGod/obsidian-github-api-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.34 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "obsidian-vault-sync-with-github",
"version": "1.1.0",
"type": "module",
"scripts": {
"build": "npm run validate && node scripts/build.mjs",
"dev": "node scripts/build.mjs --watch",
"validate": "node scripts/validate-manifest.mjs && node scripts/check-version-sync.mjs",
"typecheck": "tsc --noEmit && tsc -p tsconfig.scripts.json --noEmit",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.mjs\" && stylelint \"styles.css\"",
"governance:check": "npm run validate && node scripts/check-readme-disclosures.mjs",
"release:preflight": "npm run governance:check && node scripts/check-release-assets.mjs",
"ci": "npm run governance:check && npm run typecheck && npm run lint && npm test && npm run build && npm run release:preflight",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@types/node": "^20.12.12",
"@typescript-eslint/parser": "^8.52.0",
"esbuild": "^0.21.5",
"eslint": "^9.39.2",
"eslint-plugin-obsidianmd": "^0.1.9",
"eslint-plugin-tsdoc": "^0.4.0",
"obsidian": "^1.11.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^1.6.0"
}
}