mirror of
https://github.com/raven-pensieve/obsidian-ace-code-editor.git
synced 2026-07-22 05:48:56 +00:00
55 lines
2 KiB
JSON
55 lines
2 KiB
JSON
{
|
|
"name": "ace-code-editor",
|
|
"version": "1.2.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": "node scripts/version-bump.mjs",
|
|
"changelog:u": "conventional-changelog -p angular -i CHANGELOG.md -s -u -n ./scripts/changelog-option.js && conventional-changelog -p angular -i CHANGELOG-zh.md -s -u -n ./scripts/changelog-option-zh.js",
|
|
"changelog:all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n ./scripts/changelog-option.js && conventional-changelog -p angular -i CHANGELOG-zh.md -s -r 0 -n ./scripts/changelog-option-zh.js",
|
|
"release:pre": "npm run build && npm run version && npm run changelog:u",
|
|
"release:tag": "node scripts/release-tag.mjs",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix"
|
|
},
|
|
"keywords": [
|
|
"Ace Editor",
|
|
"Code Editor",
|
|
"Obsidian Plugin"
|
|
],
|
|
"author": "RavenHogWarts",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.x"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.4",
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"@typescript-eslint/eslint-plugin": "8.35.0",
|
|
"@typescript-eslint/parser": "^8.35.0",
|
|
"builtin-modules": "5.0.0",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"esbuild": "0.25.5",
|
|
"eslint": "^8.57.1",
|
|
"fs-extra": "^11.3.0",
|
|
"obsidian": "latest",
|
|
"postcss": "^8.5.6",
|
|
"postcss-nesting": "^13.0.2",
|
|
"tslib": "2.8.1",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/ace": "^0.0.52",
|
|
"ace-builds": "^1.43.0",
|
|
"dotenv": "^16.5.0",
|
|
"html-react-parser": "^5.2.5",
|
|
"lucide-react": "^0.523.0",
|
|
"react": "^19.1.0",
|
|
"react-ace": "^14.0.1",
|
|
"react-dom": "^19.1.0"
|
|
}
|
|
}
|