-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
{
"name": "@braindb/core",
"version": "0.0.15",
"description": "markdown-graph-content-layer-database",
"repository": {
"type": "git",
"url": "git+https://github.com/stereobooster/braindb.git",
"directory": "packages/core"
},
"author": "stereobooster",
"license": "MIT",
"keywords": [
"markdown",
"database",
"content",
"obsidian",
"graph",
"contentlayer"
],
"type": "module",
"exports": {
"types": "./dist/index.d.js",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"./dist/*",
"./drizzle/**/*"
],
"types": "./dist/index.d.js",
"scripts": {
"test": "vitest",
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"tsc": "tsc",
"generate": "drizzle-kit generate:sqlite"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/serialize-javascript": "^5.0.4",
"@types/unist": "^3.0.2",
"drizzle-kit": "^0.22.7"
},
"dependencies": {
"@braindb/remark-wiki-link": "workspace:*",
"@napi-rs/simple-git": "^0.1.16",
"@node-rs/xxhash": "^1.7.3",
"better-sqlite3": "^11.1.1",
"chokidar": "^3.6.0",
"deterministic-object-hash": "^2.0.2",
"drizzle-orm": "^0.31.2",
"mdast-util-to-string": "^4.0.0",
"mitt": "^3.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"strip-markdown": "^6.0.0",
"unified": "^11.0.5",
"unist-util-map": "^4.0.0",
"unist-util-visit": "^5.0.0",
"yaml": "^2.4.5"
}
}