-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.03 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
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
91
92
93
94
95
96
{
"name": "obsidian-historica",
"version": "0.3.6",
"description": "Intelligently generates timeline from your content ... like a bro!",
"main": "main.js",
"scripts": {
"dev": "concurrently \"yarn run css\" \"yarn run esbuild\" ",
"css": "tailwindcss -i src/style/src.css -o styles.css --watch",
"esbuild": "node esbuild.config.mjs",
"build": "tailwindcss -i src/style/src.css -o styles.css --minify &&tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"changelog": "$HOME/go/bin/git-chglog -o CHANGELOG.md",
"doc:code": "typedoc "
},
"keywords": [
"timeline",
"nlp",
"obsidian",
"plugin"
],
"author": "nhannht",
"license": "MIT",
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20.11.20",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"autoprefixer": "^10.4.17",
"builtin-modules": "3.3.0",
"canvas": "^2.11.2",
"concurrently": "^8.2.2",
"esbuild": "0.17.3",
"esbuild-plugin-svgr": "^2.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tailwindcss-scoped-preflight": "^3.4.9",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "2.4.0",
"typedoc": "^0.27.5",
"typedoc-plugin-inline-sources": "^1.2.0",
"typedoc-theme-hierarchy": "^5.0.4",
"typedoc-umlclass": "^0.10.1",
"typescript": "4.7.4",
"wrangler": "^3.99.0"
},
"dependencies": {
"@mdx-js/esbuild": "^3.0.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@types/lodash": "^4.17.0",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"chrono-node": "^2.7.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"compromise": "^14.12.0",
"highlight.js": "^11.10.0",
"html-to-image": "^1.11.11",
"ismobilejs": "^1.1.1",
"json-2-csv": "^5.5.0",
"lodash": "^4.17.21",
"lucide-react": "^0.441.0",
"natural": "^8.0.1",
"quill-better-table": "^1.2.10",
"quill-table-ui": "^1.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-quill": "^2.0.0",
"react-tooltip": "^5.28.0",
"rehype-highlight": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"toml": "^3.0.0",
"unified": "^11.0.5",
"unist": "^0.0.1"
}
}