forked from quill-mention/quill-mention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.71 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
75
76
{
"name": "quill-mention",
"version": "6.0.1",
"description": "@mentions for the Quill rich text editor",
"homepage": "https://quill-mention.com/",
"module": "dist/index.mjs",
"type": "module",
"typings": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./autoregister": {
"types": "./dist/autoregister.d.ts",
"import": "./dist/autoregister.mjs"
},
"./dist/*.css": {
"import": "./dist/*.css"
}
},
"repository": "https://github.com/quill-mention/quill-mention.git",
"author": "Fredrik Sundqvist <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"dependencies": {
"quill": "^2.0.2"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"ava": "^6.1.3",
"concurrently": "^8.2.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"parchment": "^3.0.0",
"prettier": "3.2.5",
"rollup": "^4.14.3",
"rollup-plugin-postcss": "^4.0.2",
"serve": "^14.2.1",
"tsimp": "^2.0.11",
"typescript": "^5.4.5"
},
"scripts": {
"clean": "rimraf dist",
"start": "concurrently \"rollup -c -w\" \"serve docs\"",
"build": "rollup -c",
"lint": "prettier -w src/",
"test": "ava"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
],
"files": [
"test/**/*.test.ts"
]
},
"keywords": [
"quill",
"mentions",
"autocomplete",
"mention"
]
}