-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.3 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
{
"name": "journalit",
"version": "1.8.2",
"description": "Trading journal with templates, trade tracking, imports, and reviews for Obsidian.",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node scripts/generate-styles-css.mjs && node esbuild.config.mjs release",
"lint": "node scripts/generate-styles-css.mjs && eslint src manifest.json --max-warnings 0",
"lint:review": "node scripts/generate-styles-css.mjs && node scripts/lint-review-findings.mjs",
"css:review": "node scripts/generate-styles-css.mjs && node scripts/validate-public-css.mjs",
"css:compat": "node scripts/generate-styles-css.mjs && stylelint --config stylelint.obsidian-compat.mjs styles.css",
"bundle:review": "node scripts/validate-review-bundle.mjs"
},
"keywords": [
"obsidian",
"plugin",
"trading",
"trader",
"stocks",
"forex",
"crypto",
"journaling"
],
"author": "Cursivez",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"fflate": "^0.8.3",
"flatpickr": "^4.6.13",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-grid-layout": "^2.2.3",
"react-window": "^2.2.7",
"recharts": "^3.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.14.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"bippy": "^0.5.41",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"obsidian": "^1.13.1",
"prettier": "^3.8.4",
"stylelint": "17.14.0",
"stylelint-no-unsupported-browser-features": "8.1.1",
"tslib": "2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "8.62.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cursivez/journalit.git"
},
"bugs": {
"url": "https://github.com/Cursivez/journalit/issues"
},
"homepage": "https://github.com/Cursivez/journalit#readme",
"packageManager": "pnpm@10.33.2",
"engines": {
"pnpm": ">=10.33.2",
"node": ">=22.22.1"
}
}