mirror of
https://github.com/raven-pensieve/obsidian-ace-code-editor.git
synced 2026-07-22 05:48:56 +00:00
61 lines
2 KiB
JSON
61 lines
2 KiB
JSON
{
|
|
"name": "ace-code-editor",
|
|
"version": "1.5.2",
|
|
"description": "An enhanced code editor using Ace editor, providing syntax highlighting, code folding, and other advanced editing features.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node scripts/esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production",
|
|
"build:local": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production && node scripts/copy-to-vault.mjs",
|
|
"version": "npm run build && node scripts/version-bump.mjs && npm run changelog:u && npm i",
|
|
"changelog:u": "conventional-changelog -p angular -i CHANGELOG.md -s -u -n ./scripts/changelog-option.js",
|
|
"changelog:all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n ./scripts/changelog-option.js",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
"i18n:typesafe": "typesafe-i18n",
|
|
"i18n:sync": "node scripts/sync-i18n.mjs"
|
|
},
|
|
"keywords": [
|
|
"Ace Editor",
|
|
"Code Editor",
|
|
"Obsidian Plugin"
|
|
],
|
|
"author": "RavenHogWarts",
|
|
"license": "GPL-3.0-only",
|
|
"engines": {
|
|
"node": ">=18.x"
|
|
},
|
|
"overrides": {
|
|
"@conventional-changelog/git-client": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.2",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@typescript-eslint/eslint-plugin": "8.49.0",
|
|
"@typescript-eslint/parser": "^8.49.0",
|
|
"builtin-modules": "5.0.0",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"esbuild": "0.27.1",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
"fs-extra": "^11.3.2",
|
|
"obsidian": "^1.11.0",
|
|
"postcss": "^8.5.6",
|
|
"postcss-nesting": "^13.0.2",
|
|
"tslib": "2.8.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/ace": "^0.0.52",
|
|
"ace-builds": "^1.43.5",
|
|
"dotenv": "^17.2.3",
|
|
"html-react-parser": "^5.2.10",
|
|
"lucide-react": "^0.561.0",
|
|
"radix-ui": "^1.4.3",
|
|
"react": "^19.2.3",
|
|
"react-ace": "^14.0.1",
|
|
"react-dom": "^19.2.3",
|
|
"typesafe-i18n": "^5.26.2"
|
|
}
|
|
}
|