Mercurial > obsidian-remember-file-state
annotate package.json @ 19:2a9e941c96ee
Bring new build tools from the sample plugin project
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 18 Mar 2022 19:19:18 -0700 |
parents | a50ef39473b6 |
children | 6c168de105c0 |
rev | line source |
---|---|
0 | 1 { |
2 "name": "obsidian-remember-file-state", | |
16
a50ef39473b6
Fix plugin ID, bump version to 1.0.4
Ludovic Chabant <ludovic@chabant.com>
parents:
14
diff
changeset
|
3 "version": "1.0.4", |
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", |
2a9e941c96ee
Bring new build tools from the sample plugin project
Ludovic Chabant <ludovic@chabant.com>
parents:
16
diff
changeset
|
10 "version": "node version-bump.mjs && git add manifest.json versions.json" |
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 } |