-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 949 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": "feldspar",
"version": "0.0.0",
"description": "Docusaurus-to-obsidian converter",
"main": "dist/feldspar.js",
"repository": "https://code.mysteryhouse.studio/mysteryhouse/feldspar.git",
"author": "Andy Chase <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint",
"build": "yarn tsc",
"run": "ts-node src/feldspar.ts"
},
"bin": {
"feldspar": "dist/feldspar.js"
},
"dependencies": {
"@metalsmith/collections": "^1.3.0",
"@types/yaml-front-matter": "^4.1.0",
"commander": "^9.4.1",
"escape-string-regexp": "^5.0.0",
"metalsmith": "^2.5.1",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/metalsmith": "^2.3.1",
"@types/mime-types": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}