-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "obsidian-sample-plugin",
"version": "1.0.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"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",
"typecheck": "tsc -noEmit -skipLibCheck",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Marc Satkowski",
"license": "MIT",
"devDependencies": {
"@types/acorn": "^6.0.4",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.1",
"jest": "^29.7.0",
"obsidian": "^1.8.7",
"ts-jest": "^29.2.6",
"tslib": "^2.8.1",
"typescript": "^5.8.2"
},
"dependencies": {
"@hypersphere/sqlseal": "^0.32.0",
"@vanakat/plugin-api": "^0.2.1",
"markdown-table-ts": "^1.0.3",
"ohm-js": "^17.1.0",
"lodash": "^4.17.21",
"sql-parser-cst": "^0.32.0",
"handlebars": "^4.7.8",
"json5": "^2.2.3"
}
}