-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "root",
"private": true,
"packageManager": "pnpm@9.13.0",
"description": "A rich text editor based on Quill 2.0, which extends rich modules and formats on the basis of Quill. It is powerful and out-of-the-box.",
"author": "OpenTiny Team",
"license": "MIT",
"homepage": "",
"repository": {
"type": "git",
"url": "git@github.com:opentiny/fluent-editor.git"
},
"bugs": {
"url": "https://github.com/opentiny/fluent-editor/issues"
},
"keywords": [
"editor",
"rich-text-editor",
"rich-text",
"wysiwyg",
"wysiwyg-editor",
"quill",
"opentiny",
"fluent-editor"
],
"scripts": {
"dev": "pnpm -F fluent-editor-docs dev",
"build": "pnpm -F fluent-editor-docs build",
"build:lib": "pnpm -F @opentiny/fluent-editor build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"install:browser": "pnpm -F fluent-editor-docs install:browser",
"test": "pnpm -F fluent-editor-docs test",
"report": "pnpm -F fluent-editor-docs report"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@types/node": "^22.7.0",
"eslint": "^9.0.0",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^12.1.4"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node verifyCommit.js"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}