generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "obsidian-pending-notes",
"version": "0.8.1",
"description": "Obsidian plugin for searching links without notes in your vault.",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"deploy": "npm clean-install --omit=dev && npm run build",
"dev": "node esbuild.config.mjs",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"tag": "node version-bump.mjs && TAG=$(node -pe \"require('./package.json').version\"); git commit -am \"🔖 $TAG\" && git tag $TAG && git push --tags",
"test": "jest --verbose --coverage",
"test:all": "npm t && npm run test:deploy",
"test:deploy": "node ./test/scripts/test-deploy.mjs",
"test:watch": "npm t -- --watchAll"
},
"keywords": [
"obsidian",
"obsidian plugins",
"pending notes"
],
"author": "Ulises Santana <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "~29.2.4",
"@typescript-eslint/eslint-plugin": "~5.29.0",
"@typescript-eslint/parser": "~5.29.0",
"eslint": "~8.30.0",
"jest": "~29.3.1",
"ts-jest": "~29.0.3"
},
"dependencies": {
"@types/node": "~16.11.6",
"@types/react": "~18.0.26",
"@types/react-dom": "~18.0.9",
"builtin-modules": "~3.3.0",
"esbuild": "~0.16.15",
"obsidian": "latest",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"tslib": "~2.4.0",
"typescript": "~4.7.4"
}
}