raven-pensieve_obsidian-ace.../package.json
RavenHogWarts c939e29b20
chore(release): bump version to 1.5.0 (#84)
更新包版本到 1.5.0 并添加发行说明和版本映射。
主要变更包括:
- 在 package.json、manifest.json 和 package-lock.json 中将版本号
  从 1.4.0 升级为 1.5.0,以发布新功能和修复。
- 在 versions.json 中加入 1.5.0 的映射,确保版本历史正确记录。
- 添加 CHANGELOG.md 的 1.5.0 节,列出新特性、修复和文档更新,便于用户
  了解本次发布的内容与原因。

这些更改用于发布新版本并保持项目的版本一致性与可追溯性。
2026-01-01 19:45:28 +08:00

58 lines
1.9 KiB
JSON

{
"name": "ace-code-editor",
"version": "1.5.0",
"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"
},
"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"
}
}