generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "obsidian-note-sharing",
"version": "1.3.1",
"description": "Obsidian plugin for encrypting and uploading notes to noteshare.space.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test-watch": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Maxime Cannoodt (@mcndt)",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^3.0.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"c8": "^7.11.3",
"dotenv": "^16.0.3",
"esbuild": "^0.15.14",
"esbuild-plugin-eslint": "^0.1.1",
"esbuild-svelte": "^0.7.1",
"happy-dom": "^6.0.4",
"obsidian": "latest",
"sass": "^1.56.1",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7",
"tslib": "2.3.1",
"typescript": "~4.5.0",
"vitest": "^0.15.1"
},
"dependencies": {
"crc": "^4.1.1"
}
}