-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
TfT Hacker
committed
Nov 6, 2024
1 parent
1c76aec
commit 79db746
Showing
35 changed files
with
3,228 additions
and
2,676 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"vcs": { | ||
"enabled": false, | ||
"clientKind": "git", | ||
"useIgnoreFile": false | ||
}, | ||
"files": { | ||
"ignoreUnknown": false, | ||
"ignore": [] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "tab" | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "double" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,33 @@ | ||
{ | ||
"name": "obsidian42-strange-new-worlds", | ||
"version": "2.1.4", | ||
"description": "Revealing networked thought and the strange new worlds created by your vault", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"build": "node esbuild.config.mjs production", | ||
"version": "node version-bump.mjs", | ||
"githubaction": "node version-github-action.mjs", | ||
"lint:check": "eslint --ext .ts,.tsx .", | ||
"lint:fix": "eslint --fix --ext .ts,.tsx .", | ||
"format:check": "prettier --check .", | ||
"format:fix": "prettier --write ." | ||
}, | ||
"author": "TfTHacker", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@codemirror/commands": "^6.6.0", | ||
"@codemirror/language": "^6.10.2", | ||
"@codemirror/search": "^6.5.6", | ||
"@codemirror/state": "^6.4.1", | ||
"@codemirror/view": "^6.27.0", | ||
"@types/node": "^20.14.1", | ||
"builtin-modules": "4.0.0", | ||
"esbuild": "0.21.4", | ||
"eslint": "^8.57.0", | ||
"@html-eslint/eslint-plugin": "^0.24.1", | ||
"@html-eslint/parser": "^0.24.1", | ||
"obsidian-typings": "^2.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.12.0", | ||
"@typescript-eslint/parser": "^7.12.0", | ||
"@typescript-eslint/utils": "^7.12.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-css": "^0.9.2", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-jsonc": "^2.16.0", | ||
"eslint-plugin-mdx": "^3.1.5", | ||
"eslint-plugin-only-warn": "^1.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-tsdoc": "^0.3.0", | ||
"eslint-plugin-yml": "^1.14.0", | ||
"prettier": "^3.3.0", | ||
"remark-preset-lint-consistent": "^6.0.0", | ||
"remark-preset-lint-markdown-style-guide": "^6.0.0", | ||
"remark-preset-lint-recommended": "^7.0.0", | ||
"remark-preset-prettier": "^2.0.1", | ||
"tslib": "^2.6.2", | ||
"typescript": "5.4.5", | ||
"obsidian": "^1.7.2" | ||
}, | ||
"dependencies": { | ||
"preact": "^10.22.0", | ||
"tippy.js": "^6.3.7" | ||
} | ||
"name": "obsidian42-strange-new-worlds", | ||
"version": "2.1.5", | ||
"description": "Revealing networked thought and the strange new worlds created by your vault", | ||
"scripts": { | ||
"dev": "node --no-warnings esbuild.config.mjs", | ||
"build": "node --no-warnings esbuild.config.mjs production", | ||
"lint": "biome check ./src", | ||
"version": "node version-bump.mjs", | ||
"githubaction": "node version-github-action.mjs" | ||
}, | ||
"author": "TfTHacker", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@codemirror/commands": "^6.7.1", | ||
"@codemirror/language": "^6.10.3", | ||
"@codemirror/search": "^6.5.7", | ||
"@codemirror/state": "^6.4.1", | ||
"@codemirror/view": "^6.34.2", | ||
"@types/node": "^22.9.0", | ||
"builtin-modules": "4.0.0", | ||
"esbuild": "0.24.0", | ||
"obsidian": "^1.7.2", | ||
"obsidian-typings": "^2.3.0", | ||
"tslib": "^2.8.1", | ||
"typescript": "5.6.3" | ||
}, | ||
"dependencies": { | ||
"preact": "^10.24.3", | ||
"tippy.js": "^6.3.7" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.