-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
50
51
52
53
{
"name": "obsidian-boilerplate",
"version": "1.0.0",
"private": true,
"workspaces": [
"obsidian-*"
],
"description": "A modern and robust template for developing Obsidian plugins with TypeScript",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs --watch",
"build": "node esbuild.config.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "vitest --config vitest.config.ts",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"clean": "rimraf node_modules pnpm-lock.yaml"
},
"keywords": [
"obsidian",
"plugin",
"typescript",
"template",
"boilerplate"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@codemirror/language": "^6.10.6",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.35.3",
"obsidian": "^1.7.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@types/node": "^16.11.6",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^2.1.8",
"eslint": "^8.57.1",
"jsdom": "^25.0.1",
"msw": "^2.6.8",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"sinon": "^19.0.2",
"typescript": "4.9.5",
"vite": "^4.5.5",
"vitest": "^0.34.0",
"esbuild": "^0.19.11"
}
}