forked from scrapooo/quill-resize-module
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.01 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.01 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@botom/quill-resize-module",
"version": "2.1.0",
"description": "🔒 Secure & modern Quill.js module for resizing images, videos, and iframes with zero vulnerabilities and automatic releases",
"main": "./dist/quill-resize-module.min.js",
"module": "./dist/quill-resize-module.js",
"types": "./types/main.d.ts",
"exports": {
".": {
"import": "./dist/quill-resize-module.js",
"require": "./dist/quill-resize-module.min.js",
"types": "./types/main.d.ts"
},
"./package.json": "./package.json"
},
"author": {
"name": "Edwar Diaz",
"email": "edwardiaz.dev@gmail.com",
"url": "https://github.com/BOTOOM"
},
"repository": {
"type": "git",
"url": "https://github.com/BOTOOM/quill-resize-module.git"
},
"bugs": {
"url": "https://github.com/BOTOOM/quill-resize-module/issues"
},
"homepage": "https://github.com/BOTOOM/quill-resize-module#readme",
"license": "MIT",
"keywords": [
"quill",
"quill-editor",
"image-resize",
"video-resize",
"iframe-resize",
"quill-module",
"rich-text-editor",
"wysiwyg",
"editor-plugin",
"secure",
"modern",
"typescript",
"zero-vulnerabilities",
"semantic-release",
"auto-resize",
"drag-resize",
"responsive",
"accessibility",
"lightweight",
"performance"
],
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^13.1.4",
"@types/ms": "^0.7.30",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@size-limit/file": "^11.2.0",
"eslint": "^9.39.2",
"less": "^4.5.1",
"rollup": "^3.29.0",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^25.0.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.0",
"tslib": "^2.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ts-node test/test.ts",
"pretest": "npm run build",
"prepublishOnly": "npm run build",
"size": "size-limit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"files": [
"dist/*.js",
"types/*.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"size-limit": [
{
"path": "./dist/quill-resize-module.min.js",
"limit": "15 kB"
}
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}