-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "stencil-quill",
"version": "11.0.0",
"description": "Native web component for quill editor",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "./dist/types/components.d.ts",
"collection": "./dist/collection/collection-manifest.json",
"unpkg": "dist/quill-components/quill-components.js",
"files": [
"dist/",
"loader/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "stencil build --docs",
"build:deploy": "stencil build && cp ./src/index.html ./dist && gh-pages -d ./dist",
"prepublishOnly": "npm run build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"keywords": [
"stencil",
"richtext",
"quill",
"quilljs",
"webcomponent",
"web-component",
"component",
"wysiwyg",
"native"
],
"peerDependencies": {
"quill": "^2.0.0"
},
"devDependencies": {
"@stencil/core": "^4.18.3",
"@types/jest": "^29.5.12",
"canvas": "^2.11.2",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"puppeteer": "^22.12.1",
"quill": "^2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KillerCodeMonkey/stencil-quill.git"
},
"author": "Bengt Weiße",
"license": "MIT",
"bugs": {
"url": "https://github.com/KillerCodeMonkey/stencil-quill"
},
"homepage": "https://github.com/KillerCodeMonkey/stencil-quill",
"volta": {
"node": "20.13.1"
}
}