raven-pensieve_obsidian-ace.../package.json
RavenHogWarts c7474c0fba
chore: bump version 1.3.2 (#46)
更新 package.json 和 lockfile 中的版本号从 1.3.1 到 1.3.2,以反映发布或变更的语义版本提升。同步 lockfile 中的依赖元数据,移除
若干条目中多余的 peer 字段并为部分依赖添加 peer 标记,确保
锁定文件与当前依赖关系描述保持一致,避免安装差异和潜在的
依赖解析问题。
2025-10-29 20:59:45 +08:00

56 lines
1.8 KiB
JSON

{
"name": "ace-code-editor",
"version": "1.3.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",
"changelog:all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n ./scripts/changelog-option.js",
"release:pre": "npm run build && npm run version && npm run changelog:u && npm i",
"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",
"radix-ui": "^1.4.2",
"react": "^19.1.0",
"react-ace": "^14.0.1",
"react-dom": "^19.1.0"
}
}