-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
package.json
51 lines (51 loc) · 1.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
{
"name": "quill-monorepo",
"version": "2.0.2",
"description": "Quill development environment",
"private": true,
"author": "Jason Chen <[email protected]>",
"homepage": "https://quilljs.com",
"config": {
"ports": {
"webpack": "9080",
"website": "9000"
}
},
"workspaces": [
"packages/*"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/slab/quill.git"
},
"bugs": {
"url": "https://github.com/slab/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": "NEXT_PUBLIC_LOCAL_QUILL=true npm start -w website",
"lint": "npm run lint -ws"
},
"keywords": [
"quill",
"editor",
"rich text",
"wysiwyg",
"operational transformation",
"ot",
"framework"
],
"engines": {
"npm": ">=8.2.3"
},
"engineStrict": true,
"devDependencies": {
"execa": "^9.0.2",
"npm-run-all": "^4.1.5"
}
}