-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
{
"name": "mdbasequery",
"version": "0.0.1",
"description": "Query Markdown vaults with Obsidian Bases-compatible syntax",
"type": "module",
"license": "MIT",
"author": {
"name": "Eleanor Berger",
"email": "eleanor@intellectronica.net",
"url": "https://intellectronica.net/"
},
"repository": {
"type": "git",
"url": "https://github.com/intellectronica/mdbasequery"
},
"bin": {
"mdbasequery": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint-typecheck": "tsc --noEmit",
"test": "bun test tests",
"test:bun": "bun test tests",
"test:node": "bun run build && node --test test-runtime/node-conformance.test.mjs",
"test:deno": "bun run build && deno test -A test-runtime/deno-conformance.test.ts",
"ci": "bun run lint-typecheck && bun run test:bun && bun run test:node && bun run test:deno",
"cli": "bun run src/cli.ts"
},
"dependencies": {
"minimatch": "^10.1.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "^5.9.3"
}
}