-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "zettelflow",
"version": "2.6.1",
"description": "A plugin for Obsidian that allows you to create and manage notes in a ZettelFlow-like way.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"release": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"lint": "oxlint ./src",
"lint:fix": "oxlint ./src --fix",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"keywords": [],
"author": "RafaelGB",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"builtin-modules": "4.0.0",
"codemirror": "6.0.1",
"esbuild": "0.24.0",
"esbuild-sass-plugin": "3.3.1",
"husky": "9.1.6",
"jest": "29.7.0",
"obsidian": "1.7.2",
"oxlint": "0.9.10",
"sass": "1.79.5",
"ts-jest": "29.2.5",
"tslib": "2.7.0",
"typescript": "5.6.3",
"zustand": "4.5.5"
},
"dependencies": {
"@popperjs/core": "2.11.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"uuid": "10.0.0"
}
}