-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.95 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.95 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "obsidian-dataview-serializer",
"version": "2.6.1",
"description": "Obsidian plugin that gives you the power of Dataview, but generates Markdown, making it compatible with Obsidian Publish, and making the links appear on the Graph",
"author": {
"name": "Sebastien Dubois",
"email": "[email protected]"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"dataview",
"serialization",
"markdown"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dsebastien/obsidian-dataview-serializer.git"
},
"bugs": {
"url": "https://github.com/dsebastien/obsidian-dataview-serializer/issues"
},
"homepage": "https://github.com/dsebastien/obsidian-dataview-serializer",
"engines": {
"bun": ">=1.0.0"
},
"main": "main.js",
"packageManager": "[email protected]",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"scripts": {
"dev": "bun scripts/build.ts",
"build": "bun run tsc && bun scripts/build.ts --prod",
"tsc": "tsc --noEmit",
"tsc:watch": "tsc --noEmit --watch --preserveWatchOutput",
"tscw": "bun run tsc:watch",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "bun test",
"prepare": "husky",
"commit": "cz",
"cm": "cz",
"commit:lint": "commitlint --edit",
"release:update-version": "bun scripts/update-version.ts",
"release:version-bump": "bun scripts/version-bump.ts",
"release:changelog": "bun scripts/generate-changelog.ts",
"release:zip": "bun scripts/create-release-zip.ts",
"release": "./scripts/release.sh",
"validate": "bun run --parallel tsc test lint"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.1.0",
"@eslint/js": "^9.36.0",
"@tailwindcss/cli": "4.1.17",
"@types/bun": "latest",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "5.0.0",
"conventional-changelog-conventionalcommits": "9.1.0",
"cz-customizable": "^7.5.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"obsidian": "latest",
"obsidian-dataview": "0.5.66",
"prettier": "^3.6.2",
"tailwindcss": "4.1.17",
"typescript": "^5.9.3",
"typescript-eslint": "8.48.1"
},
"dependencies": {
"date-fns": "^3.6.0",
"immer": "11.0.1"
}
}