forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "quill-monorepo",
"version": "2.0.0-beta.0",
"description": "Quill development environment",
"private": true,
"author": "Jason Chen <[email protected]>",
"homepage": "https://quilljs.com",
"config": {
"ports": {
"webpack": "9080",
"gatsby": "9000"
}
},
"workspaces": [
"packages/*"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"scripts": {
"build": "run-p build:*",
"build:quill": "npm run build -w quill",
"build:website": "npm run build -w website",
"start": "run-p start:*",
"start:quill": "npm start -w quill",
"start:website": "USE_LOCAL_FILE=true npm start -w website",
"lint": "npm run lint -w quill"
},
"keywords": [
"quill",
"editor",
"rich text",
"wysiwyg",
"operational transformation",
"ot",
"framework"
],
"engines": {
"npm": ">=8.2.3"
},
"engineStrict": true,
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}