-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 749 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
{
"name": "couchdb-startos",
"description": "CouchDB packaged for StartOS — a self-hosted sync backend for Obsidian LiveSync.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nfealey/couchdb-startos.git"
},
"scripts": {
"build": "rm -rf ./javascript && ncc build startos/index.ts -o ./javascript",
"prettier": "prettier --write startos",
"check": "tsc --noEmit"
},
"dependencies": {
"@start9labs/start-sdk": "1.5.3"
},
"devDependencies": {
"@types/node": "22.19.0",
"@vercel/ncc": "0.38.4",
"prettier": "3.6.2",
"typescript": "5.9.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}