generated from dsebastien/obsidian-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.83 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.83 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-typefully",
"version": "3.1.2",
"description": "Typefully integration. Publish social media posts with ease",
"author": {
"name": "Sébastien Dubois",
"email": "sebastien@developassion.be",
"url": "https://github.com/dsebastien/"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"typefully"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dsebastien/obsidian-typefully.git"
},
"bugs": {
"url": "https://github.com/dsebastien/obsidian-typefully/issues"
},
"homepage": "https://github.com/dsebastien/obsidian-typefully",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.1.0"
},
"main": "main.js",
"packageManager": "bun@1.3.2",
"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.4.3",
"@commitlint/config-conventional": "20.4.3",
"@eslint/js": "9.39.4",
"@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.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "17.0.0",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"obsidian": "latest",
"prettier": "3.8.1",
"tailwindcss": "4.1.17",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1"
},
"dependencies": {
"date-fns": "4.1.0",
"immer": "11.0.1"
}
}