加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
hufe 提交于 2024-11-17 13:05 . Merge branch 'main' into demo
{
"name": "@hufe921/canvas-editor",
"author": "Hufe",
"license": "MIT",
"version": "0.9.96",
"description": "rich text editor by canvas/svg",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json"
],
"typings": "./dist/src/editor/index.d.ts",
"main": "./dist/canvas-editor.umd.js",
"module": "./dist/canvas-editor.es.js",
"homepage": "https://github.com/Hufe921/canvas-editor",
"repository": {
"type": "git",
"url": "https://github.com/Hufe921/canvas-editor.git"
},
"keywords": [
"canvas-editor",
"editor",
"wysiwyg",
"emr"
],
"engines": {
"node": ">=16.9.1"
},
"type": "module",
"scripts": {
"dev": "vite",
"lib": "npm run lint && tsc && vite build --mode lib",
"build": "npm run lint && tsc && vite build --mode app",
"serve": "vite preview",
"lint": "eslint .",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"type:check": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"postinstall": "simple-git-hooks",
"release": "node scripts/release.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "16.18.96",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cypress": "13.6.0",
"cypress-file-upload": "^5.0.8",
"eslint": "7.32.0",
"simple-git-hooks": "^2.8.1",
"typescript": "4.9.5",
"vite": "^2.4.2",
"vite-plugin-css-injected-by-js": "^2.1.1",
"vitepress": "1.0.0-beta.6",
"vue": "^3.2.45"
},
"dependencies": {
"axios": "^0.24.0",
"prismjs": "^1.27.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run type:check",
"commit-msg": "node scripts/verifyCommit.js"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化