generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "obsidian-live-syncinator",
"version": "1.0.0",
"description": "Plugin to sync obsidian workspaces",
"main": "main.js",
"scripts": {
"docker-down": "docker compose -f .docker/docker-compose.yml down",
"docker-up": "docker compose -f .docker/docker-compose.yml up -d",
"ci-test": "npm run docker-up && npm run test",
"test": "node --import tsx --test-reporter spec --test './src/**/*.test.ts' './src/*.test.ts' --test-timeout=30s",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "biome check --write --unsafe .",
"format": "biome format --write ."
},
"keywords": [],
"author": {
"name": "Alberto Moretti",
"email": "[email protected]",
"author": true
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/diff": "^6.0.0",
"@types/node": "^22.8.7",
"@types/path-browserify": "^1.0.3",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"get-port": "^7.1.0",
"obsidian": "^1.7.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"ws": "^8.18.0"
},
"dependencies": {
"binaryextensions": "^6.11.0",
"diff": "^7.0.0",
"http-status-codes": "^2.3.0",
"path-browserify": "^1.0.1",
"textextensions": "^6.11.0"
}
}