-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 891 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 891 Bytes
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
{
"name": "remember-scroll-position",
"version": "1.0.16",
"description": "Remembers your cursor and scroll position for each note",
"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"
},
"keywords": [
"obsidian",
"plugin",
"scroll",
"cursor",
"position"
],
"author": "Mei Park <hey@meimakes.com>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^8.57.1",
"eslint-plugin-obsidian": "^2.29.0",
"monkey-around": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.25.0",
"obsidian": "latest",
"tslib": "^2.7.0",
"typescript": "^5.6.0"
}
}