raven-pensieve_obsidian-ace.../package.json
dependabot[bot] 44d464004d
build(deps-dev): bump postcss from 8.5.8 to 8.5.10 (#110)
Bumps [postcss](https://github.com/postcss/postcss) from 8.5.8 to 8.5.10.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.5.8...8.5.10)

---
updated-dependencies:
- dependency-name: postcss
  dependency-version: 8.5.10
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 00:38:00 +08:00

59 lines
1.8 KiB
JSON

{
"name": "ace-code-editor",
"version": "2.0.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 --env-file-if-exists=.env scripts/deploy.mjs link && node scripts/esbuild.config.mjs dev",
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs prod && node --env-file-if-exists=.env scripts/deploy.mjs copy",
"version": "pnpm run build && node scripts/version-bump.mjs && pnpm run changelog:u && pnpm 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 src/",
"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": ">=20.x"
},
"pnpm": {
"overrides": {
"@conventional-changelog/git-client": "^2.0.0"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "0.27.3",
"eslint": "^10.4.0",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "^17.6.0",
"obsidian": "^1.12.3",
"postcss": "^8.5.10",
"postcss-nesting": "^14.0.0",
"tslib": "2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4"
},
"dependencies": {
"@types/ace": "^0.0.52",
"ace-builds": "^1.44.0",
"html-react-parser": "^6.1.1",
"lucide-react": "^1.16.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-ace": "^14.0.1",
"react-dom": "^19.2.4",
"typesafe-i18n": "^5.27.1"
}
}