|
1 | 1 | {
|
2 | 2 | "name": "file-title-updater",
|
3 |
| - "version": "0.1.3", |
| 3 | + "version": "0.1.4", |
4 | 4 | "description": "Synchronize titles between filename, frontmatter, and first heading in Obsidian notes",
|
5 | 5 | "main": "main.js",
|
6 | 6 | "scripts": {
|
7 |
| - "dev": "node esbuild.config.mjs", |
8 |
| - "build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build && [ -f styles.css ] && cp styles.css build/ || true", |
9 |
| - "pretest": "eslint src/", |
10 |
| - "test": "jest --passWithNoTests", |
11 |
| - "prettier": "prettier -w 'src/**/*.ts'", |
12 |
| - "preversion": "npm run build && npm run test", |
13 |
| - "version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/", |
14 |
| - "postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json $([ -f styles.css ] && echo 'styles.css' || true)" |
15 |
| - }, |
| 7 | + "dev": "node esbuild.config.mjs", |
| 8 | + "build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build && [ -f styles.css ] && cp styles.css build/ || true", |
| 9 | + "pretest": "eslint src/", |
| 10 | + "test": "jest --passWithNoTests", |
| 11 | + "prettier": "prettier -w 'src/**/*.ts'", |
| 12 | + "preversion": "npm run build && npm run test", |
| 13 | + "version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/", |
| 14 | + "postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json $([ -f styles.css ] && echo 'styles.css' || true)" |
| 15 | + }, |
16 | 16 | "version-tag-prefix": "",
|
17 | 17 | "keywords": [
|
18 | 18 | "obsidian",
|
|
23 | 23 | ],
|
24 | 24 | "author": "wenlzhang",
|
25 | 25 | "devDependencies": {
|
26 |
| - "@eslint/js": "^9.16.0", |
27 |
| - "@types/jest": "^29.5.14", |
28 |
| - "@types/node": "^16.11.7", |
29 |
| - "@typescript-eslint/eslint-plugin": "^5.40.1", |
30 |
| - "@typescript-eslint/parser": "^5.40.1", |
31 |
| - "builtin-modules": "^4.0.0", |
32 |
| - "esbuild": "^0.13.15", |
33 |
| - "eslint": "^8.24.0", |
34 |
| - "eslint-config-standard": "^17.0.0", |
35 |
| - "eslint-plugin-import": "^2.26.0", |
36 |
| - "eslint-plugin-node": "^11.1.0", |
37 |
| - "eslint-plugin-promise": "^6.0.0", |
38 |
| - "jest": "^29.7.0", |
39 |
| - "obsidian": "latest", |
40 |
| - "prettier": "^3.4.2", |
41 |
| - "ts-jest": "^29.2.5", |
42 |
| - "typescript": "^4.9.5" |
43 |
| - }, |
44 |
| - "dependencies": { |
45 |
| - "tslib": "^2.8.1" |
46 |
| - } |
| 26 | + "@eslint/js": "^9.16.0", |
| 27 | + "@types/jest": "^29.5.14", |
| 28 | + "@types/node": "^16.11.7", |
| 29 | + "@typescript-eslint/eslint-plugin": "^5.40.1", |
| 30 | + "@typescript-eslint/parser": "^5.40.1", |
| 31 | + "builtin-modules": "^4.0.0", |
| 32 | + "esbuild": "^0.13.15", |
| 33 | + "eslint": "^8.24.0", |
| 34 | + "eslint-config-standard": "^17.0.0", |
| 35 | + "eslint-plugin-import": "^2.26.0", |
| 36 | + "eslint-plugin-node": "^11.1.0", |
| 37 | + "eslint-plugin-promise": "^6.0.0", |
| 38 | + "jest": "^29.7.0", |
| 39 | + "obsidian": "latest", |
| 40 | + "prettier": "^3.4.2", |
| 41 | + "ts-jest": "^29.2.5", |
| 42 | + "typescript": "^4.9.5" |
| 43 | + }, |
| 44 | + "dependencies": { |
| 45 | + "tslib": "^2.8.1" |
| 46 | + } |
47 | 47 | }
|
0 commit comments