-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 819 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 819 Bytes
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
{
"name": "bento",
"type": "module",
"devDependencies": {
"prettier": "^3.0.3",
"serve": "^14.2.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"start": "PORT=${PORT:-1111} serve public",
"dev": "pnpm start"
},
"dependencies": {
"@automerge/automerge-repo": "^1.2.1",
"@secret-types/serviceworker": "npm:@types/serviceworker@^0.0.96",
"@types/audioworklet": "^0.0.50"
},
"prettier": {
"printWidth": 79,
"trailingComma": "none",
"semi": false,
"singleQuote": false,
"useTabs": true,
"bracketSpacing": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"overrides": [
{
"files": "*.js",
"options": {
"parser": "babel-ts"
}
},
{
"files": "package.json",
"options": {
"parser": "json-stringify"
}
}
]
}
}