-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "kindle-to-markdown",
"version": "1.0.0",
"description": "Convert your valuable notes into .md to use with Obsidian or any note taking app",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sancg/kindle-to-markdown.git"
},
"type": "module",
"scripts": {
"lint": "eslint . --ext .ts && prettier --write \"src/**/*.ts\"",
"lint:fix": "eslint . --ext .ts --fix",
"dev": "ts-node ./src/index.ts",
"start": "tsc && node ./dist/index.js",
"test": "vitest"
},
"keywords": [
"kindle",
"kindlehighlights",
"note-taking app",
"note-taking",
"kindle-to-notes",
"kindle to markdown"
],
"author": {
"name": "Santiago Cano",
"email": "mr.santiago.cano@gmail.com",
"url": "https://www.linkedin.com/in/sancg/"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"dependencies": {
"nunjucks": "^3.2.4"
}
}