Remove unused files and dependencies

This commit is contained in:
Elias 2025-03-26 00:56:15 +00:00
parent 553abee6fa
commit b6b5ccf63f
5 changed files with 45 additions and 12 deletions

31
.gitignore vendored
View file

@ -20,4 +20,33 @@ data.json
# Exclude macOS Finder (System Explorer) View States
.DS_Store
.env
.env
# Unused development files and directories that should remain locally but not in Git
# Custom primitives directory
lwc-plugin-custom-primitives/
# Market data services
src/services/marketDataService.ts
src/services/marketDataStorage.ts
src/services/OrderBlockAnalysis.ts
# Unused components
src/components/OrderblockVisualiser.ts
src/components/RectPlugin.ts
src/components/styled.tsx
src/components/ComponentRenderer.tsx
# Unused core utilities
src/core/useMarketData.tsx
src/core/dynamic.tsx
src/core/registry.tsx
src/core/scope.ts
src/core/tailwind.ts
# Build artifacts (commonly ignored)
main.js.map
*.tsbuildinfo
.DS_Store

View file

@ -2,10 +2,12 @@
"id": "reactive-notes",
"name": "Reactive Notes",
"version": "1.0.0",
"minAppVersion": "0.15.0",
"description": "Enhances the Obsidian API with react.",
"author": "Obsidian",
"authorUrl": "https://obsidian.md",
"fundingUrl": "https://obsidian.md/pricing",
"isDesktopOnly": true
"minAppVersion": "1.4.0",
"description": "Transform your Obsidian vault into a reactive computational environment. Create dynamic React components directly in your notes.",
"author": "Elias Noesis",
"authorUrl": "https://github.com/Prodigist",
"isDesktopOnly": false,
"fundingUrl": {
"Buy Me A Coffee": "https://www.buymeacoffee.com/prodigist"
}
}

View file

@ -1,16 +1,17 @@
{
"name": "obsidian-sample-plugin",
"name": "reactive-notes",
"version": "1.0.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"description": "Transform your Obsidian vault into a reactive computational environment with React components.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"buildsole": "node esbuild.config.mjs production",
"typecheck": "tsc -noEmit -skipLibCheck",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"author": "Elias Noesis",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",

View file

@ -73,6 +73,7 @@ export const Utilities = {
forceLink,
forceManyBody,
forceCenter,
THREE: (window as any).THREE || require('three'), // Use global THREE if available
} as const;

View file

@ -1,3 +1,3 @@
{
"1.0.0": "0.15.0"
"1.0.0": "1.4.0"
}