-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 940 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 940 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
{
"name": "obsidian-manager",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --watch -r ts-node/register src/index.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "Itay Wolfish",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"dependencies": {
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
"dotenv": "^16.3.1",
"fastify": "^4.21.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2"
},
"description": "Obsidian Manager API is a service that provides file management operations for Obsidian vaults through a RESTful API. It allows reading, writing, moving, and deleting files within a specified work folder."
}