forked from Hufe921/canvas-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@hufe921/canvas-editor",
"author": "Hufe",
"license": "MIT",
"version": "0.9.94",
"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": {
"prismjs": "^1.27.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run type:check",
"commit-msg": "node scripts/verifyCommit.js"
}
}