Mercurial > obsidian-remember-file-state
annotate package.json @ 44:fae202d7b3de
Fix Typescript warnings and errors
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 20 Sep 2023 23:07:48 -0700 |
parents | a371a2001e95 |
children | 712761e7625b |
rev | line source |
---|---|
0 | 1 { |
2 "name": "obsidian-remember-file-state", | |
38
a371a2001e95
Bump versions to 1.0.7
Ludovic Chabant <ludovic@chabant.com>
parents:
30
diff
changeset
|
3 "version": "1.0.7", |
0 | 4 "description": "Plugin for Obsidian that remembers cursor position, selection, scrolling, and more for each file", |
5 "main": "main.js", | |
6 "scripts": { | |
7 "dev": "node esbuild.config.mjs", | |
19
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
16
diff
changeset
|
8 "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
16
diff
changeset
|
9 "dogfood": "node esbuild.config.mjs dogfood", |
25
6c168de105c0
Bump versions to 1.0.5, remove git stuff in script
Ludovic Chabant <ludovic@chabant.com>
parents:
19
diff
changeset
|
10 "version": "node version-bump.mjs" |
0 | 11 }, |
12 "keywords": [], | |
19
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
16
diff
changeset
|
13 "author": "Ludovic Chabant", |
0 | 14 "license": "MIT", |
15 "devDependencies": { | |
16 "@codemirror/history": "^0.19.0", | |
17 "@codemirror/state": "^0.19.6", | |
18 "@codemirror/view": "^0.19.36", | |
19 "@types/node": "^16.11.6", | |
20 "@typescript-eslint/eslint-plugin": "^5.2.0", | |
21 "@typescript-eslint/parser": "^5.2.0", | |
22 "builtin-modules": "^3.2.0", | |
23 "esbuild": "0.13.12", | |
24 "monkey-around": "^2.2.0", | |
19
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
16
diff
changeset
|
25 "obsidian": "latest", |
0 | 26 "tslib": "2.3.1", |
27 "typescript": "4.4.4" | |
28 }, | |
3 | 29 "dependencies": {} |
0 | 30 } |