generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.53 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
49
{
"name": "obsidian-firesync",
"version": "0.2.3",
"description": "Sync your Obsidian vaults via Firebase",
"main": "main.js",
"scripts": {
"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",
"testidian": "node scripts/testidian.js",
"test": "vitest run ./src/",
"andon": "vitest ./src/",
"cover": "vitest run --coverage ./src/",
"lint": "eslint ./src/",
"cors": "gcloud storage buckets describe gs://${BUCKET} --format='default(cors)'",
"cors:set": "gcloud storage buckets update gs://${BUCKET} --cors-file=cors.json",
"deploy:rules": "npx firebase deploy --only firestore:rules,storage",
"release": "release-it"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"firebase",
"synchronization"
],
"author": "daylilyfield",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^4.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@vitest/coverage-c8": "^0.31.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.16",
"esbuild-svelte": "^0.7.3",
"firebase": "^9.19.1",
"firebase-tools": "^11.28.0",
"ignore": "^5.2.4",
"jsdom": "^21.1.1",
"obsidian": "latest",
"release-it": "^15.10.3",
"svelte": "^3.58.0",
"svelte-preprocess": "^5.0.3",
"tslib": "2.5.0",
"typescript": "5.0.4",
"vitest": "^0.30.1"
}
}