-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 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
{
"name": "quill-cell",
"version": "0.1.0",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "HTML Rich-text editor element based on Web Components, WebCell v2 & Quill.",
"keywords": [
"html",
"rich-text",
"editor",
"element",
"web",
"component",
"web-cell",
"quill"
],
"source": "source/index.tsx",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"homepage": "https://web-cell.dev/quill-cell/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/quill-cell.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/quill-cell/issues"
},
"dependencies": {
"@swc/helpers": "^0.3.2",
"quill": "^1.3.7",
"quill-image-uploader": "^1.2.2",
"regenerator-runtime": "^0.13.9",
"web-cell": "^2.4.0-rc.6",
"web-utility": "^3.0.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-less": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@types/quill": "^2.0.9",
"element-internals-polyfill": "^0.1.54",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"typedoc": "^0.22.11",
"typescript": "~4.3.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,less,json,yml,ts,tsx}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged",
"pack-docs": "rm -rf docs/ && typedoc source/",
"pack-dist": "rm -rf dist/ && parcel build source/index.tsx",
"build": "npm run pack-docs && npm run pack-dist",
"prepublishOnly": "npm test && npm run build"
}
}