-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "@deathbeds/jupyak-top",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"./js"
]
},
"scripts": {
"build": "cd js && yarn build",
"build:dist": "cd js && yarn build:dist",
"build:lib": "cd js && yarn build:lib",
"watch": "cd js && yarn watch"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 88,
"proseWrap": "always",
"singleQuote": true,
"overrides": [
{
"files": [
"*.schema.json"
],
"options": {
"jsonRecursiveSort": true,
"jsonSortOrder": "{\"/^\\\\$id$/\": null, \"/^\\\\$schema$/\": null, \"/^\\\\$ref$/\": null, \"type\": null, \"title\": null, \"description\": null, \"/(properties|items)/\": null, \"/additional(Properties|Items)/\": null, \"/patternProperties/\": null, \"/^\\\\$defs$/\": \"lexical\"}"
}
},
{
"files": [
"*.toml"
],
"options": {
"arrayAutoCollapse": false
}
},
{
"files": [
"*.yaml",
"*.yml"
],
"options": {
"printWidth": 120
}
}
]
},
"devDependencies": {
"prettier": "^3.1.0",
"prettier-plugin-packagejson": "^2.4.7",
"prettier-plugin-sort-json": "^3.1.0",
"prettier-plugin-toml": "^2.0.1"
}
}