-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 953 Bytes
/
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
{
"name": "web-obsidian-builder",
"version": "0.1.6",
"description": "A typescript library to transform Obsidian notes into html",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"author": "SeppiaBrilla <[email protected]>",
"keywords": [
"Obsidian",
"Markdown"
],
"dependencies": {
"katex": "^0.16.8",
"marked": "^9.0.1"
},
"scripts": {
"build": "tsc --project tsconfig.json && tsc --project tsconfig-cjs.json",
"clean": "tsc --build --clean",
"test": "jest",
"check": "npx eslint src/",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/katex": "^0.16.3",
"@types/marked": "^5.0.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}