-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mddb",
"version": "0.9.5",
"description": "Parse markdown files and store them in an SQL database.",
"bin": {
"mddb": "./dist/src/bin/index.js"
},
"scripts": {
"format:check": "prettier --check \"**/*.{js,ts}\"",
"format": "prettier --write \"**/*.{js,ts}\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretest": "npm run build && node ./dist/src/bin/index.js ./__mocks__/content",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc --p tsconfig.lib.json",
"watch": "tsc --p tsconfig.lib.json --watch",
"changeset": "changeset",
"prepublishOnly": "npm run build",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datopian/markdowndb.git"
},
"keywords": [
"markdown",
"database",
"content",
"obsidian"
],
"author": "Rufus Pollock",
"license": "MIT",
"bugs": {
"url": "https://github.com/datopian/markdowndb/issues"
},
"homepage": "https://github.com/datopian/markdowndb",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"dependencies": {
"@portaljs/remark-wiki-link": "^1.0.4",
"@types/micromatch": "^4.0.6",
"chokidar": "^3.5.3",
"gray-matter": "^4.0.3",
"knex": "^2.4.2",
"micromatch": "^4.0.5",
"react-markdown": "^9.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"sqlite3": "^5.1.6",
"unist-util-select": "^4.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}