-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "logseq-datenlp-plugin",
"author": "benjypng",
"description": "Auto-insert dates using NLP.",
"license": "MIT",
"logseq": {
"id": "logseq-datenlp-plugin",
"title": "logseq-datenlp-plugin",
"icon": "./icon.svg",
"main": "dist/index.html"
},
"scripts": {
"dev": "bunx vite",
"build": "bunx vite build",
"build:plugin": "bunx eslint . --fix && bunx tsc && bunx vite build",
"prepare": "husky",
"lint:precommit": "echo \"Running biome\" && bunx biome check . --write && echo \"Running tsc\" && tsc --noEmit"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/github",
{
"assets": [
"logseq-datenlp-plugin.zip"
]
}
]
]
},
"dependencies": {
"@logseq/libs": "^0.2.12",
"chrono-node": "^2.9.0",
"date-fns": "^4.1.0",
"logseq-dateutils": "^2.1.2",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@tailwindcss/cli": "^4.1.17",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"prettier": "^3.7.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-logseq": "^1.1.2",
"vite-tsconfig-paths": "^5.1.4"
}
}