-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "@enzedonline/quill-blot-formatter2",
"version": "3.1.0",
"description": "An update for quill-blot-formatter to make quilljs v2 compatible.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"./dist/css/quill-blot-formatter2.css": "./dist/css/quill-blot-formatter2.css"
},
"unpkg": "./dist/index.js",
"jsdelivr": "./dist/index.js",
"homepage": "https://github.com/enzedonline/quill-blot-formatter2",
"bugs": {
"url": "https://github.com/enzedonline/quill-blot-formatter2/issues"
},
"contributors": [
{
"name": "Richard Allen",
"email": "enzedonline@users.noreply.github.com",
"url": "https://github.com/enzedonline"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/enzedonline/quill-blot-formatter2.git"
},
"files": [
"dist",
"check-upgrade.cjs"
],
"keywords": [
"quill",
"blot",
"image",
"resize"
],
"license": "Apache-2.0",
"dependencies": {
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@types/node": "^24.10.9",
"ajv": "^8.17.1",
"quill": "^2.0.3",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && vite build",
"prepublishOnly": "npm run build",
"dev": "vite --host 0.0.0.0 --port 3000",
"preview": "vite preview",
"preinstall": "node ./check-upgrade.cjs"
}
}