mirror of
https://github.com/raven-pensieve/obsidian-ace-code-editor.git
synced 2026-07-22 05:48:56 +00:00
59 lines
2 KiB
JSON
59 lines
2 KiB
JSON
{
|
|
"name": "ace-code-editor",
|
|
"version": "1.1.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": "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": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "^5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"commitizen": "^4.3.1",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^8.57.1",
|
|
"fs-extra": "^11.3.0",
|
|
"obsidian": "latest",
|
|
"postcss": "^8.5.1",
|
|
"postcss-nesting": "^13.0.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/ace": "^0.0.52",
|
|
"ace-builds": "^1.41.0",
|
|
"dotenv": "^16.4.7",
|
|
"lucide-react": "^0.507.0",
|
|
"react": "^19.1.0",
|
|
"react-ace": "^14.0.1",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|